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/cpp/KDevCppSupportIface.h

28 lines
406 B

#ifndef KDEVCPPSUPPORTIFACE_H
#define KDEVCPPSUPPORTIFACE_H
#include <tqobject.h>
#include <dcopobject.h>
class CppSupportPart;
class KDevCppSupportIface : public TQObject, public DCOPObject
{
Q_OBJECT
//
K_DCOP
public:
KDevCppSupportIface( CppSupportPart* cppSupport );
~KDevCppSupportIface();
k_dcop:
void addClass();
void parseProject();
private:
CppSupportPart* m_cppSupport;
};
#endif