##// END OF EJS Templates
Changes the name of the mokc plugin nodes to facilitate their access in the merged tree
Changes the name of the mokc plugin nodes to facilitate their access in the merged tree

File last commit:

r264:419e3cbb9021
r1043:a94048bf05e3
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