// // C++ Interface: %{MODULE} // // Description: // // // Author: %{AUTHOR} <%{EMAIL}>, (C) %{YEAR} // // Copyright: See COPYING file that comes with this distribution // // #ifndef KMFSELECTINTERFACE_H #define KMFSELECTINTERFACE_H #include "kmyfirewallselectinterface.h" // QT Includes #include // KDE Includes #include // Project Includes namespace KMF { class KDE_EXPORT KMFSelectInterface : public KMyFirewallSelectInterface { TQ_OBJECT public: KMFSelectInterface( TQWidget *parent = 0, const char *name = 0, bool modal = true, WFlags fl = 0 ); ~KMFSelectInterface(); /*$PUBLIC_FUNCTIONS$*/ public slots: /*$PUBLIC_SLOTS$*/ protected: /*$PROTECTED_FUNCTIONS$*/ protected slots: /*$PROTECTED_SLOTS$*/ void slotInterfaceChanged( int ); void accept(); void help(); void reject(); private: // DATA TQStringList m_descs; }; } #endif