Krita Source Code Documentation
Loading...
Searching...
No Matches
kis_gui_context_command_p.h
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2014 Dmitry Kazakov <dimula73@gmail.com>
3 *
4 * SPDX-License-Identifier: GPL-2.0-or-later
5 */
6
7#ifndef __KIS_GUI_CONTEXT_COMMAND_P_H
8#define __KIS_GUI_CONTEXT_COMMAND_P_H
9
10#include <QObject>
11class KUndo2Command;
12
13class KisGuiContextCommandDelegate : public QObject
14{
15 Q_OBJECT
16public:
17 KisGuiContextCommandDelegate(QObject *parent = 0);
18
19public Q_SLOTS:
20 void executeCommand(KUndo2Command *command, bool undo);
21};
22
23
24#endif /* __KIS_GUI_CONTEXT_COMMAND_P_H */
void executeCommand(KUndo2Command *command, bool undo)