Loading [MathJax]/extensions/tex2jax.js

Open
Graph Drawing
Framework

 v. 2023.09 (Elderberry)
 

All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
Loading...
Searching...
No Matches
IndInfo.h
Go to the documentation of this file.
1
34#pragma once
35
36#include <ogdf/basic/Graph.h>
37
38namespace ogdf {
39namespace booth_lueker {
40
41class IndInfo {
42 friend class EmbedPQTree;
43
44public:
45 explicit IndInfo(node w) {
46 v = w;
47 changeDir = false;
48 }
49
51
52 void resetAssociatedNode(node w) { v = w; }
53
54 node getAssociatedNode() { return v; }
55
56private:
59
60
62};
63
64}
65}
Includes declaration of graph class.
Class for the representation of nodes.
Definition Graph_d.h:177
void resetAssociatedNode(node w)
Definition IndInfo.h:52
#define OGDF_NEW_DELETE
Makes the class use OGDF's memory allocator.
Definition memory.h:84
The namespace for all OGDF objects.