File indexing completed on 2024-12-22 04:14:52

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