blob: 97579ecdd921ceefad0c5b76c801af5be8ca2546 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#include <pgf/gd/ogdf/c/InterfaceFromOGDF.h>
struct module_script : scripting::declarations {
void declare (scripting::script s)
{
using namespace scripting;
s.declare (key ("RankingModule")
.module_type ());
s.declare (key ("AcyclicSubgraphModule")
.module_type ());
s.declare (key ("HierarchyLayoutModule")
.module_type ());
s.declare (key ("TwoLayerCrossMin")
.module_type ());
s.declare (key ("InitialPlacer")
.module_type ());
s.declare (key ("MultilevelBuilder")
.module_type ());
}
};
|