mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-11 09:36:37 +00:00
13 lines
220 B
C++
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();
|
||
|
}
|