##// END OF EJS Templates
Sets the name of the plugin for products and components...
Sets the name of the plugin for products and components Since there is only one common root in the data source widget, it is no longer possible to retrieve on the fly the name of the plugin in which a component or product is located. This name is therefore attached to their creation.

File last commit:

r264:419e3cbb9021
r1076:9c3bb5e93c54
Show More
IVisualizationWidget.h
25 lines | 573 B | text/x-c | CLexer
#ifndef SCIQLOP_IVISUALIZATIONWIDGET_H
#define SCIQLOP_IVISUALIZATIONWIDGET_H
#include "Visualization/IVariableContainer.h"
#include <QString>
#include <memory>
class IVisualizationWidgetVisitor;
/**
* @brief The IVisualizationWidget handles the visualization widget.
*/
class IVisualizationWidget : public IVariableContainer {
public:
virtual ~IVisualizationWidget() = default;
/// Initializes the plugin
virtual void accept(IVisualizationWidgetVisitor *visitor) = 0;
virtual QString name() const = 0;
};
#endif // SCIQLOP_IVISUALIZATIONWIDGET_H