diff options
Diffstat (limited to 'Tests/CMakeGUI/CMakeGUITest.h')
-rw-r--r-- | Tests/CMakeGUI/CMakeGUITest.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Tests/CMakeGUI/CMakeGUITest.h b/Tests/CMakeGUI/CMakeGUITest.h new file mode 100644 index 0000000..55a885b --- /dev/null +++ b/Tests/CMakeGUI/CMakeGUITest.h @@ -0,0 +1,21 @@ +/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying + file Copyright.txt or https://cmake.org/licensing for details. */ +#pragma once + +#include <QObject> + +class CMakeSetupDialog; + +class CMakeGUITest : public QObject +{ + Q_OBJECT +public: + CMakeGUITest(CMakeSetupDialog* window, QObject* parent = nullptr); + +private: + CMakeSetupDialog* m_window = nullptr; + +private slots: + void sourceBinaryArgs(); + void sourceBinaryArgs_data(); +}; |