mirror of
https://github.com/OpenFOAM/ThirdParty-6.git
synced 2025-12-08 06:57:43 +00:00
24 lines
283 B
C++
24 lines
283 B
C++
|
|
|
|
#include <QMainWindow>
|
|
|
|
class pqTestUtility;
|
|
|
|
class TestingDemo : public QMainWindow
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
TestingDemo();
|
|
~TestingDemo();
|
|
protected slots:
|
|
void record();
|
|
void play();
|
|
void popup();
|
|
|
|
|
|
private:
|
|
Q_DISABLE_COPY(TestingDemo)
|
|
|
|
pqTestUtility *TestUtility;
|
|
};
|