summaryrefslogtreecommitdiff
path: root/noncore/apps/zsafe/categorylist.h
blob: fc1c0a2fc88ee26214cb6d57d656493aad9b5a13 (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
33
34
/*
** $Id$
*/
#ifndef _CATEGORY_LIST_H_
#define _CATEGORY_LIST_H_

#include <qstring.h>

#include <qdict.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();

        QDict<Category> categoryList;

private:

};
#endif // _CATEGORY_LIST_H_