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.
tdevelop/parts/filter/kdevfilterIface.h

28 lines
396 B

#ifndef KDEVFILTERIFACE_H
#define KDEVFILTERIFACE_H
#include <tqobject.h>
#include <dcopobject.h>
class FilterPart;
class KDevFilterIface : public TQObject, public DCOPObject
{
TQ_OBJECT
//
K_DCOP
public:
KDevFilterIface( FilterPart* part );
~KDevFilterIface();
k_dcop:
void shellInsert();
void shellFilter();
private:
FilterPart* m_part;
};
#endif