forked from teamnwah/openmw-tes3coop
22 lines
285 B
C++
22 lines
285 B
C++
|
#ifndef CSM_DOC_SAVINGSTATE_H
|
||
|
#define CSM_DOC_SAVINGSTATE_H
|
||
|
|
||
|
namespace CSMDoc
|
||
|
{
|
||
|
class Operation;
|
||
|
|
||
|
class SavingState
|
||
|
{
|
||
|
Operation& mOperation;
|
||
|
|
||
|
public:
|
||
|
|
||
|
SavingState (Operation& operation);
|
||
|
|
||
|
bool hasError() const;
|
||
|
};
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|