Open
Graph Drawing
Framework

 v. 2023.09 (Elderberry)
 

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#include <ogdf/basic/memory.h>
38
39namespace ogdf {
40namespace booth_lueker {
41
42class IndInfo {
43 friend class EmbedPQTree;
44
45public:
46 explicit IndInfo(node w) {
47 v = w;
48 changeDir = false;
49 }
50
52
53 void resetAssociatedNode(node w) { v = w; }
54
55 node getAssociatedNode() { return v; }
56
57private:
60
61
63};
64
65}
66}
Includes declaration of graph class.
Class for the representation of nodes.
Definition Graph_d.h:241
void resetAssociatedNode(node w)
Definition IndInfo.h:53
#define OGDF_NEW_DELETE
Makes the class use OGDF's memory allocator.
Definition memory.h:85
Declaration of memory manager for allocating small pieces of memory.
The namespace for all OGDF objects.