1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-21 10:53:51 +00:00
openmw-tes3mp/apps/opencs/model/doc/saving.cpp

14 lines
261 B
C++
Raw Normal View History

#include "saving.hpp"
#include "state.hpp"
#include "savingstages.hpp"
CSMDoc::Saving::Saving (Document& document)
: Operation (State_Saving, true, true), mDocument (document), mState (*this)
{
appendStage (new FinalSavingStage (mDocument, mState));
}