summaryrefslogtreecommitdiff
path: root/include/opie/todoresource.h
Side-by-side diff
Diffstat (limited to 'include/opie/todoresource.h') (more/less context) (ignore whitespace changes)
-rw-r--r--include/opie/todoresource.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/include/opie/todoresource.h b/include/opie/todoresource.h
new file mode 100644
index 0000000..34edb04
--- a/dev/null
+++ b/include/opie/todoresource.h
@@ -0,0 +1,14 @@
+
+
+#ifndef opietodoresource_h
+#define opietodoresource_h
+
+class ToDoEvent;
+class ToDoResource {
+ public:
+ ToDoResource( ) {};
+ virtual QValueList<ToDoEvent> load(const QString &file ) = 0;
+ virtual bool save( const QString &file, const QValueList<ToDoEvent> & ) = 0;
+};
+
+#endif