#ifndef TDEVFILTERIFACE_H #define TDEVFILTERIFACE_H #include #include class FilterPart; class TDevFilterIface : public TQObject, public DCOPObject { Q_OBJECT // K_DCOP public: TDevFilterIface( FilterPart* part ); ~TDevFilterIface(); k_dcop: void shellInsert(); void shellFilter(); private: FilterPart* m_part; }; #endif