mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-26 18:35:20 +00:00
26 lines
350 B
C++
26 lines
350 B
C++
|
#ifndef CSM_DOC_SAVING_H
|
||
|
#define CSM_DOC_SAVING_H
|
||
|
|
||
|
#include "operation.hpp"
|
||
|
#include "savingstate.hpp"
|
||
|
|
||
|
namespace CSMDoc
|
||
|
{
|
||
|
class Document;
|
||
|
|
||
|
class Saving : public Operation
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
Document& mDocument;
|
||
|
SavingState mState;
|
||
|
|
||
|
public:
|
||
|
|
||
|
Saving (Document& document);
|
||
|
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|