]> jfr.im git - irc/gameservirc.git/blame - gameserv/pouch.h
added a parameter to the tavern buy command that allows you to specify how many items...
[irc/gameservirc.git] / gameserv / pouch.h
CommitLineData
3662210f 1#ifndef POUCH_H
2#define POUCH_H
3
37ed80a9 4#include <list>
23f22a79 5#include <string>
37ed80a9 6
7class item; // forward declaration
e696687e 8class itemContainer; // forward declaration
37ed80a9 9
10using namespace std;
11
12class pouch
13{
14 public:
15 pouch();
16 pouch(pouch *);
17 ~pouch();
18
19 void sort();
20 void clear();
21 bool isEmpty();
22
e696687e 23 itemContainer *Find(char *);
24 itemContainer *Find(string &);
8a5cec4f 25 itemContainer *Find(int );
37ed80a9 26
e0056fa6 27 itemContainer *addItem(item *);
7b51307d 28 itemContainer *addItem(item *, int);
1ee4a31b 29 itemContainer *addItemNoChecks(item *);
37ed80a9 30 void deleteItem(item *);
e696687e 31 list <itemContainer> *getItems() { return &items; };
37ed80a9 32
33 // operators
34 const pouch &operator = ( const pouch &);
35
36 private:
e696687e 37 list <itemContainer> items;
1ee4a31b 38 long count;
3662210f 39};
40
41#endif