summaryrefslogtreecommitdiff
path: root/noncore/apps/zsafe/categorylist.h
authorzcarsten <zcarsten>2003-07-22 19:23:13 (UTC)
committer zcarsten <zcarsten>2003-07-22 19:23:13 (UTC)
commitfa3772aa7ddea5725cc7e7db42d017567e4cc14c (patch) (side-by-side diff)
tree112ec27dd148d0b381ac559fd3e1ee32a89ecd0d /noncore/apps/zsafe/categorylist.h
parent059af0e82a14a32f068c2ad943dc918afca93587 (diff)
downloadopie-fa3772aa7ddea5725cc7e7db42d017567e4cc14c.zip
opie-fa3772aa7ddea5725cc7e7db42d017567e4cc14c.tar.gz
opie-fa3772aa7ddea5725cc7e7db42d017567e4cc14c.tar.bz2
Initial revision
Diffstat (limited to 'noncore/apps/zsafe/categorylist.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/zsafe/categorylist.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/noncore/apps/zsafe/categorylist.h b/noncore/apps/zsafe/categorylist.h
new file mode 100644
index 0000000..96cf389
--- a/dev/null
+++ b/noncore/apps/zsafe/categorylist.h
@@ -0,0 +1,32 @@
+/*
+** $Id$
+*/
+#ifndef _CATEGORY_LIST_H_
+#define _CATEGORY_LIST_H_
+
+#include <qstring.h>
+#include <qasciidict.h>
+#include "category.h"
+
+// list of Category
+
+class CategoryList
+{
+public:
+ CategoryList();
+ ~CategoryList();
+
+ void insert (QString key, Category *category);
+ Category *find (QString key);
+ void remove (QString key);
+ void clear();
+
+ QAsciiDict<Category> categoryList;
+
+private:
+
+};
+#endif // _CATEGORY_LIST_H_
+
+
+