ParaView
BasicApp.h
Go to the documentation of this file.
1 
2 #include "pqRenderView.h"
3 #include "vtkObject.h"
4 #include <QMainWindow>
5 #include <QPointer>
6 
7 class MainWindow : public QMainWindow
8 {
9  Q_OBJECT
10 public:
11  MainWindow();
12  bool compareView(
13  const QString& referenceImage, double threshold, ostream& output, const QString& tempDirectory);
14  QPointer<pqRenderView> RenderView;
15 public slots:
16  void processTest();
17 };
bool compareView(const QString &referenceImage, double threshold, ostream &output, const QString &tempDirectory)
void processTest()
QPointer< pqRenderView > RenderView
Definition: BasicApp.h:14