summaryrefslogtreecommitdiffstats
path: root/parts/filter/kdevfilterIface.h
blob: 46a14277dd6b85b95ec269061e4ecdd5a8655a05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26

#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