summaryrefslogtreecommitdiffstats
path: root/dcoppython/test/dcopserver/tdedcoptest.h
diff options
context:
space:
mode:
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_