summaryrefslogtreecommitdiffstats
path: root/dcoppython/test/dcopserver/tdedcoptest.h
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2014-01-08 20:06:00 +0100
committerSlávek Banko <slavek.banko@axis.cz>2014-01-08 20:06:00 +0100
commit636f509299122d02087c6fd62e1e4a46dbd22026 (patch)
tree70e43efceeb5b00e7f19cdac8da44928bd2fb459 /dcoppython/test/dcopserver/tdedcoptest.h
parent719b61750c08343f530068ed4127623aeac71cf0 (diff)
downloadtdebindings-636f509299122d02087c6fd62e1e4a46dbd22026.tar.gz
tdebindings-636f509299122d02087c6fd62e1e4a46dbd22026.zip
Rename many classes to avoid conflicts with KDE
Diffstat (limited to 'dcoppython/test/dcopserver/tdedcoptest.h')
-rw-r--r--dcoppython/test/dcopserver/tdedcoptest.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/dcoppython/test/dcopserver/tdedcoptest.h b/dcoppython/test/dcopserver/tdedcoptest.h
new file mode 100644
index 00000000..84a4db01
--- /dev/null
+++ b/dcoppython/test/dcopserver/tdedcoptest.h
@@ -0,0 +1,38 @@
+/*
+ * Copyright (C) 2003 Julian Rockey <kde@jrockey.com>
+ */
+
+#ifndef _KDEDCOPTEST_H_
+#define _KDEDCOPTEST_H_
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+#include <tdemainwindow.h>
+
+#include "mainclass.h"
+
+/**
+ * @short Application Main Window
+ * @author Julian Rockey <kde@jrockey.com>
+ * @version 0.1
+ */
+class KDEDcopTest : public TDEMainWindow
+{
+ Q_OBJECT
+public:
+ /**
+ * Default Constructor
+ */
+ KDEDcopTest();
+
+ /**
+ * Default Destructor
+ */
+ virtual ~KDEDcopTest();
+private:
+ MainClass *m_mainClass;
+};
+
+#endif // _KDEDCOPTEST_H_