00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 #ifndef __MATERIAL_H
00015 #define __MATERIAL_H
00016
00017 #include <string>
00018 #include <map>
00019 #include <list>
00020 using namespace std;
00021
00022
00023
00024 class material {
00025 class item *item;
00026 int amount;
00027 int position;
00028 public:
00029 material();
00030
00031
00032 class item& getItem() const;
00033 void setItem(class item &v);
00034
00035
00036 const int getAmount() const;
00037 void setAmount(const int v);
00038
00039
00040 const int getPosition() const;
00041 void setPosition(const int v);
00042 const string showPosition() const;
00043 int operator<(const class material &ck) const;
00044
00045 void save(class channel &ch);
00046 void load(class channel &ch);
00047 void xml(ofstream &f, int l=0, int r=0);
00048 };
00049
00050 #endif // __MATERIAL_H