/* C implementation of RC2 encryption algorithm, as described in RFC2268 */ /* By Matthew Palmer */ /* $Id$ */ #include "categorylist.h" CategoryList::CategoryList() { } CategoryList::~CategoryList() { } void CategoryList::insert (QString key, Category *category) { categoryList.insert (key, category); } Category *CategoryList::find (QString key) { return categoryList.find (key); } void CategoryList::remove (QString key) { categoryList.remove (key); } void CategoryList::clear() { categoryList.clear(); }