##// END OF EJS Templates
Started PySide2 migration, builds with CMake and produces a working binary...
Started PySide2 migration, builds with CMake and produces a working binary Need to port all previous stuff from Pybind11 to PySide2/shboken Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r730:2d96f9af06b9
r1477:70de8bd3d575
Show More
IGraphSynchronizer.h
24 lines | 760 B | text/x-c | CLexer
#ifndef SCIQLOP_IGRAPHSYNCHRONIZER_H
#define SCIQLOP_IGRAPHSYNCHRONIZER_H
class VisualizationGraphWidget;
/**
* @brief The IVisualizationSynchronizer interface represents a delegate used to manage the
* synchronization between graphs, applying them processes or properties to ensure their
* synchronization
*/
class IGraphSynchronizer {
public:
virtual ~IGraphSynchronizer() = default;
/**
* Adds a graph as a new synchronized element, and sets its properties so that its
* synchronization is maintained with all other graphs managed by the synchonizer
* @param graph the graph to add in the synchronization
*/
virtual void addGraph(VisualizationGraphWidget &graph) const = 0;
};
#endif // SCIQLOP_IGRAPHSYNCHRONIZER_H