summaryrefslogtreecommitdiffstats
path: root/xparts/src/interfaces/xpartmanager.h
diff options
context:
space:
mode:
Diffstat (limited to 'xparts/src/interfaces/xpartmanager.h')
-rw-r--r--xparts/src/interfaces/xpartmanager.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/xparts/src/interfaces/xpartmanager.h b/xparts/src/interfaces/xpartmanager.h
new file mode 100644
index 00000000..a172ee3f
--- /dev/null
+++ b/xparts/src/interfaces/xpartmanager.h
@@ -0,0 +1,20 @@
+#ifndef __xkparts_partmanager_h__
+#define __xkparts_partmanager_h__
+
+#include <dcopobject.h>
+#include <qglobal.h>
+
+class XKPartManager : public DCOPObject
+{
+ K_DCOP
+
+k_dcop:
+ /** Query a XPart able to handle a given mimetype */
+ virtual DCOPRef createPart( QString servicetype ) = 0;
+
+ /** Delete a previously created XPart */
+ virtual void deletePart( DCOPRef ref ) = 0;
+};
+
+
+#endif