1 /*
2  *  Copyright (c) 2008 Cyrille Berger <cberger@cberger.net>
3  *
4  *  This library is free software; you can redistribute it and/or modify
5  *  it under the terms of the GNU Lesser General Public License as published by
6  *  the Free Software Foundation; version 2 of the License, or
7  *  (at your option) any later version.
8  *
9  *  This library is distributed in the hope that it will be useful,
10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *  GNU Lesser General Public License for more details.
13  *
14  *  You should have received a copy of the GNU Lesser General Public License
15  *  along with this program; if not, write to the Free Software
16  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17  */
18 
19 #ifndef _SPECIFICCOLORSELECTOR_H_
20 #define _SPECIFICCOLORSELECTOR_H_
21 
22 #include <QObject>
23 #include <QVariant>
24 
25 
26 /**
27  * Template of view plugin
28  */
29 class SpecificColorSelectorPlugin : public QObject
30 {
31     Q_OBJECT
32 public:
33     SpecificColorSelectorPlugin(QObject *parent, const QVariantList &);
34     ~SpecificColorSelectorPlugin() override;
35 };
36 
37 #endif
38