blob: da8ed9b3f7a01f3dcc43be22ed19a8ce08ce9c9f (
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 KDEVJAVASUPPORTIFACE_H
#define KDEVJAVASUPPORTIFACE_H
#include <tqobject.h>
#include <dcopobject.h>
class JavaSupportPart;
class KDevJavaSupportIface : public TQObject, public DCOPObject
{
Q_OBJECT
// TQ_OBJECT
K_DCOP
public:
KDevJavaSupportIface( JavaSupportPart* javaSupport );
~KDevJavaSupportIface();
k_dcop:
void addClass();
void parseProject();
private:
JavaSupportPart* m_javaSupport;
};
#endif
|