Krita Source Code Documentation
Loading...
Searching...
No Matches
ToolKnife.h
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2025 Agata Cacko
3 *
4 * SPDX-License-Identifier: GPL-2.0-or-later
5 */
6
7#ifndef TOOL_KNIFE_H_
8#define TOOL_KNIFE_H_
9
10#include <QObject>
11#include <QVariant>
12
13class ToolKnife : public QObject
14{
15 Q_OBJECT
16public:
17 ToolKnife(QObject *parent, const QVariantList &);
18 ~ToolKnife() override;
19
20};
21
22#endif // TOOL_KNIFE_H_
~ToolKnife() override
Definition ToolKnife.cpp:26
ToolKnife(QObject *parent, const QVariantList &)
Definition ToolKnife.cpp:20