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
Drawing.h
Go to the documentation of this file.
1
31#pragma once
32
33namespace ogdf {
34namespace internal {
35namespace gcm {
36namespace graph {
37
38template<typename Kernel, typename Graph>
39class Drawing {
40private:
42
43public:
44 Drawing(Graph& graph) : m_graph(graph) {
45 //nothing to do
46 }
47
48 Graph& get_graph() { return m_graph; }
49
50 Graph& get_graph() const { return m_graph; }
51};
52
53}
54}
55}
56}
Data type for general directed graphs (adjacency list representation).
Definition Graph_d.h:521
The namespace for all OGDF objects.