File indexing completed on 2024-06-16 04:16:10

0001 /*
0002  *  SPDX-FileCopyrightText: 2011 Sven Langkamp <sven.langkamp@gmail.com>
0003  *
0004  *  SPDX-License-Identifier: LGPL-2.0-or-later
0005  */
0006 
0007 #ifndef CHANNELDOCKER_H
0008 #define CHANNELDOCKER_H
0009 
0010 #include <QObject>
0011 #include <QVariant>
0012 
0013 
0014 /**
0015  * Docker showing the channels of the current layer
0016  */
0017 class ChannelDockerPlugin : public QObject
0018 {
0019     Q_OBJECT
0020 public:
0021     ChannelDockerPlugin(QObject *parent, const QVariantList &);
0022     ~ChannelDockerPlugin() override;
0023 };
0024 
0025 #endif