2010-08-03 13:24:44 +00:00
|
|
|
|
|
|
|
#include "misc.hpp"
|
|
|
|
|
|
|
|
#include <components/esm/loadmisc.hpp>
|
|
|
|
|
2010-08-03 15:11:41 +00:00
|
|
|
#include <components/esm_store/cell_store.hpp>
|
|
|
|
|
|
|
|
#include "../mwworld/ptr.hpp"
|
|
|
|
|
2010-08-03 13:24:44 +00:00
|
|
|
namespace MWClass
|
|
|
|
{
|
2010-08-03 15:11:41 +00:00
|
|
|
std::string Misc::getName (const MWWorld::Ptr& ptr) const
|
|
|
|
{
|
|
|
|
ESMS::LiveCellRef<ESM::Misc, MWWorld::RefData> *ref =
|
|
|
|
ptr.get<ESM::Misc>();
|
|
|
|
|
|
|
|
return ref->base->name;
|
|
|
|
}
|
|
|
|
|
2010-08-03 13:24:44 +00:00
|
|
|
void Misc::registerSelf()
|
|
|
|
{
|
|
|
|
boost::shared_ptr<Class> instance (new Misc);
|
|
|
|
|
|
|
|
registerClass (typeid (ESM::Misc).name(), instance);
|
|
|
|
}
|
|
|
|
}
|