summaryrefslogtreecommitdiff
path: root/core/pim
authorzecke <zecke>2002-10-07 11:31:35 (UTC)
committer zecke <zecke>2002-10-07 11:31:35 (UTC)
commitc2cd5470fa3ec69394fa65ad16ab29a6cadab56f (patch) (unidiff)
treeab7d3adb19339bba0b69122dc20f5af34ca1d7b7 /core/pim
parent772e75ae7934325172073a09f176fbbd9b64b4e0 (diff)
downloadopie-c2cd5470fa3ec69394fa65ad16ab29a6cadab56f.zip
opie-c2cd5470fa3ec69394fa65ad16ab29a6cadab56f.tar.gz
opie-c2cd5470fa3ec69394fa65ad16ab29a6cadab56f.tar.bz2
Initial revision
Diffstat (limited to 'core/pim') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/todo/todoedit.h17
-rw-r--r--core/pim/todo/todotemplate.h11
2 files changed, 28 insertions, 0 deletions
diff --git a/core/pim/todo/todoedit.h b/core/pim/todo/todoedit.h
new file mode 100644
index 0000000..02800ca
--- a/dev/null
+++ b/core/pim/todo/todoedit.h
@@ -0,0 +1,17 @@
1#ifndef OPIE_TODO_EDIT_H
2#define OPIE_TODO_EDIT_H
3
4#include <opie/otodo.h>
5
6namespace Todo {
7 class Edit {
8 public:
9 Edit();
10 virtual ~Edit();
11
12 ToDoEvent newEvent( const OTodo& ) = 0;
13 ToDoEvent editEvent( const OTodo& ) = 0;
14 };
15};
16
17#endif
diff --git a/core/pim/todo/todotemplate.h b/core/pim/todo/todotemplate.h
new file mode 100644
index 0000000..9575737
--- a/dev/null
+++ b/core/pim/todo/todotemplate.h
@@ -0,0 +1,11 @@
1#ifndef OPIE_TODO_TEMPLATE_H
2#define OPIE_TODO_TEMPLATE_H
3
4
5
6namespace Todo {
7
8
9};
10
11#endif