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

27 lines
386 B

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