Krita Source Code Documentation
Loading...
Searching...
No Matches
compositiondocker.h
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2012 Sven Langkamp <sven.langkamp@gmail.com>
3 *
4 * SPDX-License-Identifier: LGPL-2.0-or-later
5 */
6
7#ifndef COMPOSITIONDOCKER_H
8#define COMPOSITIONDOCKER_H
9
10#include <QObject>
11#include <QVariant>
12
13
17class CompositionDockerPlugin : public QObject
18{
19 Q_OBJECT
20public:
21 CompositionDockerPlugin(QObject *parent, const QVariantList &);
22 ~CompositionDockerPlugin() override;
23};
24
25#endif
CompositionDockerPlugin(QObject *parent, const QVariantList &)