Open
Graph Drawing
Framework

 v. 2023.09 (Elderberry)
 

Loading...
Searching...
No Matches
SimDrawManipulatorModule.h
Go to the documentation of this file.
1
32#pragma once
33
34#include <ogdf/basic/basic.h>
35
36namespace ogdf {
37class Graph;
38class GraphAttributes;
39class SimDraw;
40
42
63protected:
66
69
72
73public:
75
78
80 explicit SimDrawManipulatorModule(SimDraw& SD) { init(SD); }
81
83 void init(SimDraw& SD);
84
86 const SimDraw& constSimDraw() const { return *m_SD; }
87};
88
89}
Basic declarations, included by all source files.
Stores additional attributes of a graph (like layout information).
Data type for general directed graphs (adjacency list representation).
Definition Graph_d.h:866
The Base class for simultaneous graph drawing.
Definition SimDraw.h:55
Interface for simdraw manipulators.
SimDraw * m_SD
pointer to current simdraw instance
const SimDraw & constSimDraw() const
returns base instance
void init(SimDraw &SD)
initializing base instance
SimDrawManipulatorModule(SimDraw &SD)
constructor
SimDrawManipulatorModule()
default constructor
Graph * m_G
pointer to current graph
GraphAttributes * m_GA
pointer to current graphattributes
#define OGDF_EXPORT
Specifies that a function or class is exported by the OGDF dynamic library (shared object / DLL),...
Definition config.h:117
The namespace for all OGDF objects.