summaryrefslogtreecommitdiff
path: root/tikzit/src/gui/undocommands.cpp
blob: 38f75692f2fa57efcf85557ff81bef7ba73bafb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "undocommands.h"

MoveCommand::MoveCommand(TikzScene *scene, QUndoCommand *parent) : QUndoCommand(parent)
{
    _scene = scene;
}

void MoveCommand::undo()
{

}

void MoveCommand::redo()
{

}