diff options
| author | Darrell Anderson <humanreadable@yahoo.com> | 2014-03-02 20:05:33 +0100 |
|---|---|---|
| committer | Slávek Banko <slavek.banko@axis.cz> | 2014-03-02 20:05:33 +0100 |
| commit | 722ce1efbac31c61b1d4b13f7e075c9f311e3e73 (patch) | |
| tree | db1b6b28566e5fe9accb4a688f7257673cecb080 /languages/cpp/app_templates/tdedcop/mainclass.h | |
| parent | afb74575caf7dd8ccb6c235b1c8d788e320c19da (diff) | |
| download | tdevelop-722ce1efbac31c61b1d4b13f7e075c9f311e3e73.tar.gz tdevelop-722ce1efbac31c61b1d4b13f7e075c9f311e3e73.zip | |
Finish renaming tdevelop components
Diffstat (limited to 'languages/cpp/app_templates/tdedcop/mainclass.h')
| -rw-r--r-- | languages/cpp/app_templates/tdedcop/mainclass.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/languages/cpp/app_templates/tdedcop/mainclass.h b/languages/cpp/app_templates/tdedcop/mainclass.h new file mode 100644 index 00000000..13504f82 --- /dev/null +++ b/languages/cpp/app_templates/tdedcop/mainclass.h @@ -0,0 +1,32 @@ +%{H_TEMPLATE} + +#ifndef MAINCLASS_H +#define MAINCLASS_H + +#include "%{APPNAMELC}_iface.h" + +/** + * + * @author %{AUTHOR} + **/ +class MainClass : virtual public DCOPDemoIface +{ +public: + MainClass(); + + ~MainClass(); + + + // Here is the implementation of the example DCOP interface methods. + virtual void setStrVal(const TQString &); + virtual void setIntVal(int); + virtual TQString strVal() const; + virtual int intVal() const; + +private: + TQString m_strValue; + int m_intValue; + +}; + +#endif |
