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/TDevCppSupportIface.h

29 lines
448 B

#ifndef TDEVCPPSUPPORTIFACE_H
#define TDEVCPPSUPPORTIFACE_H
#include <tqobject.h>
#include <dcopobject.h>
class CppSupportPart;
class TDevCppSupportIface : public TQObject, public DCOPObject
{
Q_OBJECT
//
K_DCOP
public:
TDevCppSupportIface( CppSupportPart* cppSupport );
~TDevCppSupportIface();
k_dcop:
void addClass();
void parseProject();
private:
CppSupportPart* m_cppSupport;
};
#endif
// kate: indent-mode csands; tab-width 4;