1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-03-29 12:36:44 +00:00
openmw-tes3mp/apps/opencs/model/doc/savingstate.hpp

22 lines
No EOL
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