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.
29 lines
448 B
29 lines
448 B
15 years ago
|
|
||
11 years ago
|
#ifndef TDEVCPPSUPPORTIFACE_H
|
||
|
#define TDEVCPPSUPPORTIFACE_H
|
||
15 years ago
|
|
||
15 years ago
|
#include <tqobject.h>
|
||
15 years ago
|
#include <dcopobject.h>
|
||
|
|
||
|
class CppSupportPart;
|
||
|
|
||
11 years ago
|
class TDevCppSupportIface : public TQObject, public DCOPObject
|
||
15 years ago
|
{
|
||
|
Q_OBJECT
|
||
13 years ago
|
//
|
||
15 years ago
|
K_DCOP
|
||
|
public:
|
||
11 years ago
|
TDevCppSupportIface( CppSupportPart* cppSupport );
|
||
|
~TDevCppSupportIface();
|
||
15 years ago
|
|
||
|
k_dcop:
|
||
|
void addClass();
|
||
|
void parseProject();
|
||
|
|
||
|
private:
|
||
|
CppSupportPart* m_cppSupport;
|
||
|
};
|
||
|
|
||
|
#endif
|
||
|
// kate: indent-mode csands; tab-width 4;
|