File indexing completed on 2024-06-09 04:20:55

0001 /*
0002  *  SPDX-FileCopyrightText: 2006-2010 Thomas Zander <zander@kde.org>
0003  *  SPDX-License-Identifier: GPL-2.0-or-later
0004  */
0005 #ifndef TestShapeContainer_H
0006 #define TestShapeContainer_H
0007 
0008 #include <QObject>
0009 
0010 class TestShapeContainer : public QObject
0011 {
0012     Q_OBJECT
0013 private Q_SLOTS:
0014     // tests
0015     void testModel();
0016     void testSetParent();
0017     void testSetParent2();
0018     void testScaling();
0019     void testScaling2();
0020 };
0021 
0022 #endif