summaryrefslogtreecommitdiffstats
path: root/src/komposedcopiface.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/komposedcopiface.h')
-rw-r--r--src/komposedcopiface.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/komposedcopiface.h b/src/komposedcopiface.h
new file mode 100644
index 0000000..2527af3
--- /dev/null
+++ b/src/komposedcopiface.h
@@ -0,0 +1,33 @@
+//
+// C++ Interface: %{MODULE}
+//
+// Description:
+//
+//
+// Author: %{AUTHOR} <%{EMAIL}>, (C) %{YEAR}
+//
+// Copyright: See COPYING file that comes with this distribution
+//
+//
+#ifndef KOMPOSEDCOPIFACE_H
+#define KOMPOSEDCOPIFACE_H
+
+#include <dcopobject.h>
+
+/**
+@author Hans Oischinger
+*/
+class KomposeDcopIface : virtual public DCOPObject
+{
+ K_DCOP
+
+ k_dcop:
+
+ virtual void createDefaultView() = 0;
+ virtual void createVirtualDesktopView() = 0;
+ virtual void createCurrentDesktopView() = 0;
+ virtual void createWorldView() = 0;
+ virtual void closeCurrentView() = 0;
+};
+
+#endif