mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-29 04:15:31 +00:00
24 lines
No EOL
379 B
C++
24 lines
No EOL
379 B
C++
#ifndef CSM_DOC_DOCUMENT_H
|
|
#define CSM_DOC_DOCUMENT_H
|
|
|
|
#include <QUndoStack>
|
|
|
|
namespace CSMDoc
|
|
{
|
|
class Document
|
|
{
|
|
QUndoStack mUndoStack;
|
|
|
|
// not implemented
|
|
Document (const Document&);
|
|
Document& operator= (const Document&);
|
|
|
|
public:
|
|
|
|
Document();
|
|
|
|
QUndoStack& getUndoStack();
|
|
};
|
|
}
|
|
|
|
#endif |