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.
kmyfirewall/kmyfirewall/core/kmfruleoptioneditinterface.cpp

31 lines
686 B

// C++ Implementation: kmfplugin
//
// Description:
//
//
// Author: Christian Hubinger <chubinger@irrsinnig.org>, (C) 2003
//
// Copyright: See COPYING file that comes with this distribution
//
//
#include "kmfruleoptioneditinterface.h"
// TQt includes
// KDE includes
#include <kdebug.h>
// Project includes
namespace KMF {
KMFRuleOptionEditInterface::KMFRuleOptionEditInterface(TQObject *parent, const char* name ) : KMFPlugin( parent, name ) {
kdDebug() << "KMFRuleOptionEditInterface::KMFRuleOptionEditInterface()" << endl;
}
KMFRuleOptionEditInterface::~KMFRuleOptionEditInterface() {
kdDebug() << "KMFRuleOptionEditInterface::~KMFRuleOptionEditInterface()" << endl;
}
}