1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-23 03:53:53 +00:00
openmw/apps/opencs/model/doc/saving.hpp
2022-09-22 21:35:26 +03:00

25 lines
439 B
C++

#ifndef CSM_DOC_SAVING_H
#define CSM_DOC_SAVING_H
#include <components/to_utf8/to_utf8.hpp>
#include "operation.hpp"
#include "savingstate.hpp"
namespace CSMDoc
{
class Document;
class Saving : public Operation
{
Q_OBJECT
Document& mDocument;
SavingState mState;
public:
Saving(Document& document, const std::filesystem::path& projectPath, ToUTF8::FromType encoding);
};
}
#endif