##// END OF EJS Templates
Implements validation of variable's data (1)...
Implements validation of variable's data (1) Creates helper used to validate data, depending on the server set at compile time

File last commit:

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