mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-25 15:35:23 +00:00
24 lines
379 B
C++
24 lines
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 |