2010-08-03 13:24:44 +00:00
|
|
|
#ifndef GAME_MWCLASS_ITEMLEVLIST_H
|
|
|
|
#define GAME_MWCLASS_ITEMLEVLIST_H
|
|
|
|
|
|
|
|
#include "../mwworld/class.hpp"
|
|
|
|
|
|
|
|
namespace MWClass
|
|
|
|
{
|
|
|
|
class ItemLevList : public MWWorld::Class
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2014-07-18 07:56:58 +00:00
|
|
|
/// Return ID of \a ptr
|
|
|
|
virtual std::string getId (const MWWorld::Ptr& ptr) const;
|
|
|
|
|
2015-12-18 14:27:06 +00:00
|
|
|
virtual std::string getName (const MWWorld::ConstPtr& ptr) const;
|
2010-08-03 15:11:41 +00:00
|
|
|
///< \return name (the one that is to be presented to the user; not the internal one);
|
|
|
|
/// can return an empty string.
|
2010-08-03 13:24:44 +00:00
|
|
|
|
|
|
|
static void registerSelf();
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|