File indexing completed on 2024-12-22 04:14:56
0001 /* 0002 * SPDX-FileCopyrightText: 2019 Shi Yan <billconan@gmail.net> 0003 * 0004 * SPDX-License-Identifier: LGPL-2.0-or-later 0005 */ 0006 0007 #ifndef _RECORDER_DOCKER_H_ 0008 #define _RECORDER_DOCKER_H_ 0009 0010 #include <QObject> 0011 #include <QVariant> 0012 0013 class KisViewManager; 0014 0015 /** 0016 * Template of view plugin 0017 */ 0018 class RecorderDockerPlugin : public QObject 0019 { 0020 Q_OBJECT 0021 public: 0022 RecorderDockerPlugin(QObject* parent, const QVariantList&); 0023 ~RecorderDockerPlugin() override; 0024 0025 private: 0026 KisViewManager* m_view {nullptr}; 0027 }; 0028 0029 #endif