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.
tdevelop/languages/java/KDevJavaSupportIface.h

27 lines
438 B

#ifndef KDEVJAVASUPPORTIFACE_H
#define KDEVJAVASUPPORTIFACE_H
#include <qobject.h>
#include <dcopobject.h>
class JavaSupportPart;
class KDevJavaSupportIface : public QObject, public DCOPObject
{
Q_OBJECT
K_DCOP
public:
KDevJavaSupportIface( JavaSupportPart* javaSupport );
~KDevJavaSupportIface();
k_dcop:
void addClass();
void parseProject();
private:
JavaSupportPart* m_javaSupport;
};
#endif