mirror of
https://github.com/OpenFOAM/ThirdParty-6.git
synced 2025-12-08 06:57:43 +00:00
19 lines
366 B
C++
19 lines
366 B
C++
|
|
#include <QMainWindow>
|
|
#include <QPointer>
|
|
#include "pqRenderView.h"
|
|
#include "vtkObject.h"
|
|
|
|
class MainWindow : public QMainWindow
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
MainWindow();
|
|
bool compareView(const QString& referenceImage, double threshold,
|
|
ostream& output, const QString& tempDirectory);
|
|
QPointer<pqRenderView> RenderView;
|
|
public slots:
|
|
void processTest();
|
|
|
|
};
|