You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
386 B
24 lines
386 B
//
|
|
// C++ Implementation: malloryclient
|
|
//
|
|
// Description:
|
|
//
|
|
//
|
|
// Author: Remi Villatel <maxilys@tele2.fr>, (C) 2005
|
|
//
|
|
// Copyright: See COPYING file that comes with this distribution
|
|
//
|
|
//
|
|
#include "malloryclient.h"
|
|
|
|
MalloryClient::MalloryClient(QObject *parent, const char *name)
|
|
: KDecoration(parent, name)
|
|
{
|
|
}
|
|
|
|
MalloryClient::~MalloryClient()
|
|
{
|
|
}
|
|
|
|
#include "malloryclient.moc"
|