blob: dd337fcc0ee6eaf690e861f995c0a6181a37db20 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include <pgf/gd/ogdf/c/InterfaceFromOGDF.h>
#include "PlanarizationLayout_script.h"
struct planarity_script :
scripting::declarations
{
void declare (scripting::script s) {
s.declare (new PlanarizationLayout_script);
}
};
|