File indexing completed on 2024-05-26 04:34:37

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_DYNA_H_
0008 #define TOOL_DYNA_H_
0009 
0010 #include <QObject>
0011 #include <QVariant>
0012 
0013 /**
0014  * A module that provides a polygon tool.
0015  */
0016 class ToolDyna : public QObject
0017 {
0018     Q_OBJECT
0019 
0020 public:
0021 
0022     ToolDyna(QObject *parent, const QVariantList &);
0023     ~ToolDyna() override;
0024 
0025 };
0026 
0027 #endif // TOOL_DYNA_H_