summaryrefslogtreecommitdiffstats
path: root/kmyfirewall/core/kmfruletargetoptioneditinterface.h
blob: 4e7faaaeacaf5d454ae5745de75528056922ca1a (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
31
32
33
34
35
36
37
38
39
40
41
//
// C++ Interface: kmfruletragetoptioneditinterface
//
// Description:
//
//
// Author: Christian Hubinger <chubinger@irrsinnig.org>, (C) 2004
//
// Copyright: See COPYING file that comes with this distribution
//
//
#ifndef KMFRULETARGETOPTIONEDITINTERFACE_H
#define KMFRULETARGETOPTIONEDITINTERFACE_H

#include "kmfruleoptioneditinterface.h"

#include <qstring.h>
#include <qstringlist.h>

#include <kdemacros.h>

/**
@author Christian Hubinger
*/
namespace KMF {
class KDE_EXPORT KMFRuleTargetOptionEditInterface : public KMFRuleOptionEditInterface {
public:
	KMFRuleTargetOptionEditInterface(QObject *parent = 0, const char *name = 0);

	virtual ~KMFRuleTargetOptionEditInterface();

	virtual bool manageTarget( const QString& ) const;
	virtual bool setTarget( const QString& ) = 0;

protected:
	QStringList m_managedTargets;


};
}
#endif