File indexing completed on 2024-06-09 04:28:46

0001 /*
0002  *  SPDX-FileCopyrightText: 2004 Michael Thaler <michael.thaler@physik.tu-muenchen.de>
0003  *
0004  *  SPDX-License-Identifier: GPL-2.0-or-later
0005  */
0006 
0007 #ifndef TOOL_POLYGON_H_
0008 #define TOOL_POLYGON_H_
0009 
0010 #include <QObject>
0011 #include <QVariant>
0012 
0013 /**
0014  * A module that provides a polygon tool.
0015  */
0016 class ToolPolygon : public QObject
0017 {
0018     Q_OBJECT
0019 
0020 public:
0021 
0022     ToolPolygon(QObject *parent, const QVariantList &);
0023     ~ToolPolygon() override;
0024 
0025 };
0026 
0027 #endif // TOOL_POLYGON_H_