/* ** $Id$ */ #ifndef _CATEGORY_LIST_H_ #define _CATEGORY_LIST_H_ #include #include #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 categoryList; private: }; #endif // _CATEGORY_LIST_H_