OSDN Git Service

not exporting qdt file
[qcad/qcad.git] / qcadwin / undo / QUndoUnit.h
1 //---------------------------------------------------------------------------
2 // Base class of Undo
3 //---------------------------------------------------------------------------
4 #ifndef QUndoUnitH
5 #define QUndoUnitH
6 //---------------------------------------------------------------------------
7 class QManager;
8
9 class QUndoUnit {
10 private:
11
12 public:
13   virtual void Undo(QManager *qManager) {};
14 };
15 //---------------------------------------------------------------------------
16
17 #include "QManager.h"
18 #endif