blob: c94509ba603f634dcea8ff5f2876d9eefd8c337f (
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
28
|
#ifndef TDEVCPPSUPPORTIFACE_H
#define TDEVCPPSUPPORTIFACE_H
#include <tqobject.h>
#include <dcopobject.h>
class CppSupportPart;
class TDevCppSupportIface : public TQObject, public DCOPObject
{
Q_OBJECT
//
K_DCOP
public:
TDevCppSupportIface( CppSupportPart* cppSupport );
~TDevCppSupportIface();
k_dcop:
void addClass();
void parseProject();
private:
CppSupportPart* m_cppSupport;
};
#endif
// kate: indent-mode csands; tab-width 4;
|