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