summaryrefslogtreecommitdiffstats
path: root/examples/undo/editor/stack.h
blob: 259d98b3c43c1ea277282efbfe5a7d5202fb08c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <UiHelpers/UiUndoStack>

QT_USE_NAMESPACE_UIHELPERS;

class Stack : public UiUndoStack
{
    Q_OBJECT
public:
    Stack(QObject *parent = 0);
    ~Stack();

    Q_INVOKABLE void pushCommand();
};