summaryrefslogtreecommitdiffstats
path: root/kipi-plugins/sync/libkipi2/interface.h
diff options
context:
space:
mode:
Diffstat (limited to 'kipi-plugins/sync/libkipi2/interface.h')
-rw-r--r--kipi-plugins/sync/libkipi2/interface.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/kipi-plugins/sync/libkipi2/interface.h b/kipi-plugins/sync/libkipi2/interface.h
new file mode 100644
index 0000000..e4d0e31
--- /dev/null
+++ b/kipi-plugins/sync/libkipi2/interface.h
@@ -0,0 +1,35 @@
+/* ============================================================
+ * File : interface.h
+ * Author: Colin Guthrie <kde@colin.guthr.ie>
+ * Date : 2007-01-26
+ *
+ * Copyright 2007 by Colin Guthrie <kde@colin.guthr.ie>
+ *
+ * This program is free software; you can redistribute it
+ * and/or modify it under the terms of the GNU General
+ * Public License as published by the Free Software Foundation;
+ * either version 2, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ * ============================================================ */
+
+#ifndef KIPI2_INTERFACE_H
+#define KIPI2_INTERFACE_H
+
+#include <qobject.h>
+#include "collection.h"
+
+namespace KIPI2
+{
+class Interface : public QObject
+{
+ Q_OBJECT
+
+public:
+ virtual const CollectionList* getCollections() = 0;
+};
+}
+#endif /* KIPI2_INTERFACE_H */