1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2026-01-18 11:30:55 +00:00
openmw/apps/opencs/model/doc/savingstate.cpp

13 lines
No EOL
220 B
C++

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