summaryrefslogtreecommitdiff
path: root/tikzit/src/gui/undocommands.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tikzit/src/gui/undocommands.cpp')
-rw-r--r--tikzit/src/gui/undocommands.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/tikzit/src/gui/undocommands.cpp b/tikzit/src/gui/undocommands.cpp
new file mode 100644
index 0000000..38f7569
--- /dev/null
+++ b/tikzit/src/gui/undocommands.cpp
@@ -0,0 +1,16 @@
+#include "undocommands.h"
+
+MoveCommand::MoveCommand(TikzScene *scene, QUndoCommand *parent) : QUndoCommand(parent)
+{
+ _scene = scene;
+}
+
+void MoveCommand::undo()
+{
+
+}
+
+void MoveCommand::redo()
+{
+
+}