summaryrefslogtreecommitdiff
path: root/graphics/pgf/base/source/misclayout_script.h
blob: 22ac039b7f3279ea06252b2cce77f0421e905f8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <pgf/gd/ogdf/c/InterfaceFromOGDF.h>

#include "BalloonLayout_script.h"
#include "CircularLayout_script.h"

struct misclayout_script :
  scripting::declarations
{
  void declare (scripting::script s) {
    s.declare (new BalloonLayout_script);
    s.declare (new CircularLayout_script);
  }
};