summaryrefslogtreecommitdiff
path: root/tikzit/src/gui/undocommands.cpp
diff options
context:
space:
mode:
authorAleks Kissinger <aleks0@gmail.com>2017-12-18 15:29:33 +0000
committerAleks Kissinger <aleks0@gmail.com>2017-12-18 15:29:33 +0000
commit2bf85f71dc07b2c4785b9408e3c426ccaab55b74 (patch)
tree29ed038fa42f7ba5f11a2af305b6c350149a1a9b /tikzit/src/gui/undocommands.cpp
parent5816cd5d5e3edf7ee7a7273c7c3a3d907dc54a4a (diff)
introduced some comments for source navigation
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()
+{
+
+}