forked from mirror/openmw-tes3mp
67bd6cd708
git ls-files -z | xargs -0 sed -i '1{/^$/d}'
20 lines
370 B
C++
20 lines
370 B
C++
#include "record.hpp"
|
|
|
|
CSMWorld::RecordBase::~RecordBase() {}
|
|
|
|
bool CSMWorld::RecordBase::isDeleted() const
|
|
{
|
|
return mState==State_Deleted || mState==State_Erased;
|
|
}
|
|
|
|
|
|
bool CSMWorld::RecordBase::isErased() const
|
|
{
|
|
return mState==State_Erased;
|
|
}
|
|
|
|
|
|
bool CSMWorld::RecordBase::isModified() const
|
|
{
|
|
return mState==State_Modified || mState==State_ModifiedOnly;
|
|
}
|