File indexing completed on 2024-12-22 04:16:59

0001 /*
0002  *  SPDX-FileCopyrightText: 2004 Boudewijn Rempt (boud@valdyas.org)
0003  *
0004  *  SPDX-License-Identifier: GPL-2.0-or-later
0005  */
0006 
0007 #ifndef TOOL_TRANSFORM_H_
0008 #define TOOL_TRANSFORM_H_
0009 
0010 #include <QObject>
0011 #include <QVariant>
0012 
0013 /**
0014  * A module that provides a transform tool.
0015  */
0016 class ToolTransform : public QObject
0017 {
0018     Q_OBJECT
0019 public:
0020     ToolTransform(QObject *parent, const QVariantList &);
0021     ~ToolTransform() override;
0022 };
0023 
0024 #endif // TOOL_TRANSFORM_H_