summaryrefslogtreecommitdiff
path: root/src/task.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/task.h')
-rw-r--r--src/task.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/task.h b/src/task.h
index 840e657..0c64c04 100644
--- a/src/task.h
+++ b/src/task.h
@@ -30,6 +30,7 @@
#include <string>
#include <list>
+#include <map>
typedef unsigned int taskid_t;
typedef std::list<taskid_t> TaskIdList;
@@ -37,8 +38,7 @@ typedef std::list<taskid_t> TaskIdList;
typedef struct {
taskid_t id;
taskid_t parentid;
- std::string title;
- std::string desc;
+ std::map<std::string, std::string> attributes;
} task_t;
#endif/*__MUNIA_TASK_H__*/