OpenMW
apps/openmw/mwgui/companionitemmodel.hpp
Go to the documentation of this file.
00001 #ifndef MWGUI_COMPANION_ITEM_MODEL_H
00002 #define MWGUI_COMPANION_ITEM_MODEL_H
00003 
00004 #include "inventoryitemmodel.hpp"
00005 
00006 namespace MWGui
00007 {
00008 
00011     class CompanionItemModel : public InventoryItemModel
00012     {
00013     public:
00014         CompanionItemModel (const MWWorld::Ptr& actor);
00015 
00016         virtual void copyItem (const ItemStack& item, size_t count);
00017         virtual void removeItem (const ItemStack& item, size_t count);
00018     };
00019 
00020 }
00021 
00022 #endif