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.h

26 lines
611 B

#ifndef __KMFRULOPTIONEEDITINTERFACE_H
#define __KMFRULOPTIONEEDITINTERFACE_H
#include <tqobject.h>
#include <tqstring.h>
#include <tqptrlist.h>
#include "kmfplugin.h"
namespace KMF {
class IPTRule;
class TDE_EXPORT KMFRuleOptionEditInterface : public KMFPlugin {
public:
KMFRuleOptionEditInterface(TQObject *parent = 0, const char* name = 0);
virtual ~KMFRuleOptionEditInterface();
virtual void loadRule( IPTRule* ) = 0;
virtual TQWidget* editWidget() = 0;
virtual const TQString& optionEditName() const = 0;
virtual const TQString& description() const = 0;
};
}
#endif // __KMFRULEEDITINTERFACE_H