blob: 56d2aebfc2af00439c602f7d3288849f52cbfdcf (
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
27
|
#ifndef TDEVFILTERIFACE_H
#define TDEVFILTERIFACE_H
#include <tqobject.h>
#include <dcopobject.h>
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
|