##// END OF EJS Templates
It's now possible to create the variable and ask data to be retreived...
It's now possible to create the variable and ask data to be retreived asynchronously

File last commit:

r244:419e3cbb9021
r294:c71a61da7f3d
Show More
IVisualizationWidget.h
25 lines | 573 B | text/x-c | CLexer
Add the visualization gui classes
r111 #ifndef SCIQLOP_IVISUALIZATIONWIDGET_H
#define SCIQLOP_IVISUALIZATIONWIDGET_H
Alexandre Leroux
Creates a interface that defines a variable container...
r194 #include "Visualization/IVariableContainer.h"
Add the visualization gui classes
r111
#include <QString>
#include <memory>
Alexandre Leroux
Updates visitor interface...
r192 class IVisualizationWidgetVisitor;
Add the visualization gui classes
r111 /**
* @brief The IVisualizationWidget handles the visualization widget.
*/
Alexandre Leroux
Creates a interface that defines a variable container...
r194 class IVisualizationWidget : public IVariableContainer {
Add the visualization gui classes
r111
public:
virtual ~IVisualizationWidget() = default;
/// Initializes the plugin
Alexandre Leroux
Updates visitor interface...
r192 virtual void accept(IVisualizationWidgetVisitor *visitor) = 0;
Add const and override
r112 virtual QString name() const = 0;
Add the visualization gui classes
r111 };
#endif // SCIQLOP_IVISUALIZATIONWIDGET_H