summaryrefslogtreecommitdiff
path: root/noncore/apps/zsafe/categorylist.h
blob: 96cf38917dedcb21870b9bbc327e9c77c5a60941 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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_