summaryrefslogtreecommitdiff
path: root/core/pim/todo/todotemplatemanager.h
Side-by-side diff
Diffstat (limited to 'core/pim/todo/todotemplatemanager.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/todo/todotemplatemanager.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/core/pim/todo/todotemplatemanager.h b/core/pim/todo/todotemplatemanager.h
new file mode 100644
index 0000000..387ced1
--- a/dev/null
+++ b/core/pim/todo/todotemplatemanager.h
@@ -0,0 +1,32 @@
+#ifndef OPIE_TODO_TEMPLATE_H
+#define OPIE_TODO_TEMPLATE_H
+
+#include <qstring.h>
+#include <qmap.h>
+
+#include <opie/otodo.h>
+
+
+namespace Todo {
+ class TemplateManager {
+ public:
+ TemplateManager();
+ ~TemplateManager();
+ void load();
+ void save();
+ QStringList templates()const;
+ OTodo templateEvent( const QString& templateName );
+
+ /* also replaces one */
+ void addEvent( const QString&, const OTodo& );
+ void removeEvent( const QString& );
+ private:
+ QString m_path;
+ QMap<QString, OTodo> m_templates;
+
+
+
+ };
+};
+
+#endif