1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-17 01:10:10 +00:00
OpenMW/apps/opencs/model/doc/saving.hpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
482 B
C++
Raw Normal View History

#ifndef CSM_DOC_SAVING_H
#define CSM_DOC_SAVING_H
2022-10-19 17:02:00 +00:00
#include <QObject>
#include <components/to_utf8/to_utf8.hpp>
#include "operation.hpp"
#include "savingstate.hpp"
2022-10-19 17:02:00 +00:00
#include <filesystem>
namespace CSMDoc
{
class Document;
class Saving : public Operation
{
Q_OBJECT
Document& mDocument;
SavingState mState;
2022-09-22 18:26:05 +00:00
public:
Saving(Document& document, const std::filesystem::path& projectPath, ToUTF8::FromType encoding);
};
}
#endif