|
|
@ -5,19 +5,19 @@
|
|
|
|
namespace MWWorld
|
|
|
|
namespace MWWorld
|
|
|
|
{
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
ESM::RefNum CellRef::getRefNum() const
|
|
|
|
const ESM::RefNum& CellRef::getRefNum() const
|
|
|
|
{
|
|
|
|
{
|
|
|
|
return mCellRef.mRefNum;
|
|
|
|
return mCellRef.mRefNum;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool CellRef::hasContentFile() const
|
|
|
|
bool CellRef::hasContentFile() const
|
|
|
|
{
|
|
|
|
{
|
|
|
|
return getRefNum().hasContentFile();
|
|
|
|
return mCellRef.mRefNum.hasContentFile();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void CellRef::unsetRefNum()
|
|
|
|
void CellRef::unsetRefNum()
|
|
|
|
{
|
|
|
|
{
|
|
|
|
getRefNum().unset();
|
|
|
|
mCellRef.mRefNum.unset();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
std::string CellRef::getRefId() const
|
|
|
|
std::string CellRef::getRefId() const
|
|
|
|