##// END OF EJS Templates
Adds the ability to force an acquisition pending for an operation (3)...
Adds the ability to force an acquisition pending for an operation (3) Forces to wait acquisition when creating a variable

File last commit:

r1169:6897882500e5
r1251:6cdc10030ad4
Show More
CatalogueExplorer.h
29 lines | 622 B | text/x-c | CLexer
#ifndef SCIQLOP_CATALOGUEEXPLORER_H
#define SCIQLOP_CATALOGUEEXPLORER_H
#include <Common/spimpl.h>
#include <QDialog>
namespace Ui {
class CatalogueExplorer;
}
class VisualizationWidget;
class CatalogueExplorer : public QDialog {
Q_OBJECT
public:
explicit CatalogueExplorer(QWidget *parent = 0);
virtual ~CatalogueExplorer();
void setVisualizationWidget(VisualizationWidget *visualization);
private:
Ui::CatalogueExplorer *ui;
class CatalogueExplorerPrivate;
spimpl::unique_impl_ptr<CatalogueExplorerPrivate> impl;
};
#endif // SCIQLOP_CATALOGUEEXPLORER_H