00001 /* C implementation of RC2 encryption algorithm, as described in RFC2268 */ 00002 /* By Matthew Palmer <mjp16@uow.edu.au> */ 00003 /* $Id: categorylist.cpp,v 1.2 2003/08/13 16:54:10 zcarsten Exp $ */ 00004 00005 #include "categorylist.h" 00006 00007 CategoryList::CategoryList() 00008 { 00009 } 00010 00011 CategoryList::~CategoryList() 00012 { 00013 } 00014 00015 void CategoryList::insert (QString key, Category *category) 00016 { 00017 categoryList.insert (key, category); 00018 } 00019 00020 Category *CategoryList::find (QString key) 00021 { 00022 return categoryList.find (key); 00023 } 00024 00025 void CategoryList::remove (QString key) 00026 { 00027 categoryList.remove (key); 00028 } 00029 00030 void CategoryList::clear() 00031 { 00032 categoryList.clear(); 00033 } 00034 00035
1.4.2