summaryrefslogtreecommitdiff
path: root/noncore/apps/zsafe/categorylist.cpp
blob: c5e8d664ec656ca210c75004eac8325239e6d0ae (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
35
/* C implementation of RC2 encryption algorithm, as described in RFC2268 */
/* By Matthew Palmer <mjp16@uow.edu.au> */
/* $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();
}