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
456 B
28 lines
456 B
|
|
#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
|