KDevCppSupportIface.h
Go to the documentation of this file.00001 00002 #ifndef KDEVCPPSUPPORTIFACE_H 00003 #define KDEVCPPSUPPORTIFACE_H 00004 00005 #include <qobject.h> 00006 #include <dcopobject.h> 00007 00008 class CppSupportPart; 00009 00010 class KDevCppSupportIface : public QObject, public DCOPObject 00011 { 00012 Q_OBJECT 00013 K_DCOP 00014 public: 00015 KDevCppSupportIface( CppSupportPart* cppSupport ); 00016 ~KDevCppSupportIface(); 00017 00018 k_dcop: 00019 void addClass(); 00020 void parseProject(); 00021 00022 private: 00023 CppSupportPart* m_cppSupport; 00024 }; 00025 00026 #endif