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/kmfruletargetoptioneditinte...

42 lines
852 B

//
// 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