diff options
Diffstat (limited to 'languages/cpp/TDevCppSupportIface.h')
| -rw-r--r-- | languages/cpp/TDevCppSupportIface.h | 28 | 
1 files changed, 28 insertions, 0 deletions
| diff --git a/languages/cpp/TDevCppSupportIface.h b/languages/cpp/TDevCppSupportIface.h new file mode 100644 index 00000000..c94509ba --- /dev/null +++ b/languages/cpp/TDevCppSupportIface.h @@ -0,0 +1,28 @@ + +#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; | 
