forked from mirror/openmw-tes3mp
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();
|
||
|
}
|