You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
447 B
28 lines
447 B
15 years ago
|
|
||
11 years ago
|
#ifndef TDEVJAVASUPPORTIFACE_H
|
||
|
#define TDEVJAVASUPPORTIFACE_H
|
||
15 years ago
|
|
||
15 years ago
|
#include <tqobject.h>
|
||
15 years ago
|
#include <dcopobject.h>
|
||
|
|
||
|
class JavaSupportPart;
|
||
|
|
||
11 years ago
|
class TDevJavaSupportIface : public TQObject, public DCOPObject
|
||
15 years ago
|
{
|
||
|
Q_OBJECT
|
||
13 years ago
|
//
|
||
15 years ago
|
K_DCOP
|
||
|
public:
|
||
11 years ago
|
TDevJavaSupportIface( JavaSupportPart* javaSupport );
|
||
|
~TDevJavaSupportIface();
|
||
15 years ago
|
|
||
|
k_dcop:
|
||
|
void addClass();
|
||
|
void parseProject();
|
||
|
|
||
|
private:
|
||
|
JavaSupportPart* m_javaSupport;
|
||
|
};
|
||
|
|
||
|
#endif
|