Krita Source Code Documentation
Loading...
Searching...
No Matches
History.h
Go to the documentation of this file.
1/* This file is part of the KDE project
2 * SPDX-FileCopyrightText: 2010 Matus Talcik <matus.talcik@gmail.com>
3 *
4 * SPDX-License-Identifier: LGPL-2.0-or-later
5 */
6
7#ifndef _HISTORY_H_
8#define _HISTORY_H_
9
10#include <QObject>
11#include <QVariant>
12
13class HistoryPlugin : public QObject
14{
15 Q_OBJECT
16public:
17 HistoryPlugin(QObject *parent, const QVariantList &);
18 ~HistoryPlugin() override;
19};
20
21#endif
~HistoryPlugin() override
Definition History.cpp:53
HistoryPlugin(QObject *parent, const QVariantList &)
Definition History.cpp:46