summaryrefslogtreecommitdiffstats
path: root/kmyfirewall/core/kmfruletargetoptioneditinterface.h
blob: 8cffb8e89915f0bbee97ef246b1f1650d674c91f (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 <tqstring.h>
#include <tqstringlist.h>

#include <kdemacros.h>

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

	virtual ~KMFRuleTargetOptionEditInterface();

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

protected:
	TQStringList m_managedTargets;


};
}
#endif