1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-11 00:39:59 +00:00
OpenMW/apps/opencs/model/doc/savingstate.cpp

13 lines
220 B
C++

#include "savingstate.hpp"
#include "operation.hpp"
CSMDoc::SavingState::SavingState (Operation& operation)
: mOperation (operation)
{}
bool CSMDoc::SavingState::hasError() const
{
return mOperation.hasError();
}