Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Kitware
GitHub Repository: Kitware/CMake
Path: blob/master/Tests/CMakeGUI/CatchShowTest.h
3148 views
1
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
2
file LICENSE.rst or https://cmake.org/licensing for details. */
3
#pragma once
4
5
#include <QObject>
6
7
class CatchShowTest : public QObject
8
{
9
Q_OBJECT
10
public:
11
CatchShowTest(QObject* parent = nullptr);
12
13
private slots:
14
void catchShow();
15
};
16
17