blob: 4bbe7905f8d95e7754bb99383d4b2a19adcb9de0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef INTERFACE_DCOP_H
#define INTERFACE_DCOP_H
#include <dcopobject.h>
class dcop_interface : virtual public DCOPObject
{
K_DCOP
k_dcop:
virtual TQString interface() const = 0;
};
#endif
|