// // C++ Interface: kmfchecklistitem // // Description: // // // Author: Christian Hubinger , (C) 2003 // // Copyright: See COPYING file that comes with this distribution // // /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #ifndef KMFCHECKLISTITEM_H #define KMFCHECKLISTITEM_H #include #include namespace KMF { class KMFProtocol; class KMFProtocolUsage; class NetfilterObject; class KDE_EXPORT KMFCheckListItem : public TQCheckListItem { public: KMFCheckListItem( TQListViewItem *parent, const TQString&, Type tt = Controller, KMFProtocolUsage* = 0 ); KMFCheckListItem( TQListView *parent, TQListViewItem *after, const TQString&, Type tt = Controller, KMFProtocolUsage* = 0 ); KMFCheckListItem( TQListViewItem *parent, TQListViewItem *after, const TQString&, Type tt = Controller, KMFProtocolUsage* = 0); ~KMFCheckListItem(); public: KMFProtocolUsage* protocolUsage() const { return m_protocolUsage; }; private: void loadKMFProtocolUsage( KMFProtocolUsage* ); KMFProtocolUsage *m_protocolUsage; }; } #endif