#ifndef OPENMW_MWCLASS_CLASSMODEL_H #define OPENMW_MWCLASS_CLASSMODEL_H #include "../mwworld/livecellref.hpp" #include "../mwworld/ptr.hpp" #include namespace MWClass { template std::string_view getClassModel(const MWWorld::ConstPtr& ptr) { const MWWorld::LiveCellRef* ref = ptr.get(); return ref->mBase->mModel; } } #endif