summaryrefslogtreecommitdiffstats
path: root/kmyfirewall/core/kmfruleoptioneditinterface.cpp
blob: 02390c5ff36f39260bede02f4786b67f8433e847 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// C++ Implementation: kmfplugin
//
// Description:
//
//
// Author: Christian Hubinger <chubinger@irrsinnig.org>, (C) 2003
//
// Copyright: See COPYING file that comes with this distribution
//
//
#include "kmfruleoptioneditinterface.h"

// QT 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;
}

}