File indexing completed on 2024-06-23 04:26:22

0001 /*
0002  *  SPDX-FileCopyrightText: 2009 Cyrille Berger <cberger@cberger.net>
0003  *
0004  *  SPDX-License-Identifier: LGPL-2.0-or-later
0005  */
0006 
0007 #ifndef _DIGITALMIXER_H_
0008 #define _DIGITALMIXER_H_
0009 
0010 #include <QObject>
0011 #include <QVariant>
0012 
0013 class KisViewManager;
0014 
0015 /**
0016  * Template of view plugin
0017  */
0018 class DigitalMixerPlugin : public QObject
0019 {
0020     Q_OBJECT
0021     public:
0022         DigitalMixerPlugin(QObject *parent, const QVariantList &);
0023         ~DigitalMixerPlugin() override;
0024     private:
0025         KisViewManager* m_view {nullptr};
0026 };
0027 
0028 #endif