1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-25 06:35:30 +00:00

27 lines
533 B
C++
Raw Normal View History

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