summaryrefslogtreecommitdiff
path: root/include/opie/todoresource.h
Unidiff
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 @@
1
2
3#ifndef opietodoresource_h
4#define opietodoresource_h
5
6class ToDoEvent;
7class ToDoResource {
8 public:
9 ToDoResource( ) {};
10 virtual QValueList<ToDoEvent> load(const QString &file ) = 0;
11 virtual bool save( const QString &file, const QValueList<ToDoEvent> & ) = 0;
12};
13
14#endif