blob: 614e1bd68ab6a3e63aafe91ade44a7c9541a54cf (
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 KDEVCPPSUPPORTIFACE_H
#define KDEVCPPSUPPORTIFACE_H
#include <tqobject.h>
#include <dcopobject.h>
class CppSupportPart;
class KDevCppSupportIface : public TQObject, public DCOPObject
{
TQ_OBJECT
//
K_DCOP
public:
KDevCppSupportIface( CppSupportPart* cppSupport );
~KDevCppSupportIface();
k_dcop:
void addClass();
void parseProject();
private:
CppSupportPart* m_cppSupport;
};
#endif
|