##// END OF EJS Templates
Defines fuzzing operations...
Defines fuzzing operations Fuzzinf operations are operations that can be executed on a variable during tests. For now, only the "variable creation" operation is implemented

File last commit:

r1136:6897882500e5
r1171:1d0fdfceb8fb
Show More
CatalogueExplorer.h
29 lines | 622 B | text/x-c | CLexer
Adds the new CatalogueExplorer dialog
r1093 #ifndef SCIQLOP_CATALOGUEEXPLORER_H
#define SCIQLOP_CATALOGUEEXPLORER_H
Retrieves zone names from the visualization
r1136 #include <Common/spimpl.h>
Adds the new CatalogueExplorer dialog
r1093 #include <QDialog>
namespace Ui {
class CatalogueExplorer;
}
Retrieves zone names from the visualization
r1136 class VisualizationWidget;
Adds the new CatalogueExplorer dialog
r1093 class CatalogueExplorer : public QDialog {
Q_OBJECT
public:
explicit CatalogueExplorer(QWidget *parent = 0);
virtual ~CatalogueExplorer();
Retrieves zone names from the visualization
r1136 void setVisualizationWidget(VisualizationWidget *visualization);
Adds the new CatalogueExplorer dialog
r1093 private:
Ui::CatalogueExplorer *ui;
Retrieves zone names from the visualization
r1136
class CatalogueExplorerPrivate;
spimpl::unique_impl_ptr<CatalogueExplorerPrivate> impl;
Adds the new CatalogueExplorer dialog
r1093 };
#endif // SCIQLOP_CATALOGUEEXPLORER_H