summaryrefslogtreecommitdiffstats
path: root/languages/cpp/app_templates/kdedcop/mainclass.h
diff options
context:
space:
mode:
Diffstat (limited to 'languages/cpp/app_templates/kdedcop/mainclass.h')
-rw-r--r--languages/cpp/app_templates/kdedcop/mainclass.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/languages/cpp/app_templates/kdedcop/mainclass.h b/languages/cpp/app_templates/kdedcop/mainclass.h
deleted file mode 100644
index 13504f82..00000000
--- a/languages/cpp/app_templates/kdedcop/mainclass.h
+++ /dev/null
@@ -1,32 +0,0 @@
-%{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