File indexing completed on 2025-01-26 04:11:35

0001 /*
0002  *  SPDX-FileCopyrightText: 2015 Wolthera van Hövell tot Westerflier <griffinvalley@gmail.com>
0003  *
0004  *  SPDX-License-Identifier: GPL-2.0-or-later
0005  */
0006  
0007 #ifndef _TANGENTNORMAL_PAINTOP_PLUGIN_H_
0008 #define _TANGENTNORMAL_PAINTOP_PLUGIN_H_
0009 
0010 #include <QObject>
0011 #include <QVariant>
0012 
0013 class TangentNormalPaintOpPlugin: public QObject
0014 {
0015     Q_OBJECT
0016 public:
0017     TangentNormalPaintOpPlugin(QObject *parent, const QVariantList &);
0018     ~TangentNormalPaintOpPlugin() override;
0019 };
0020 
0021 
0022 #endif // _TANGENTNORMAL_PAINTOP_PLUGIN_H_