summaryrefslogtreecommitdiff
path: root/graphics/pgf/base/source/misclayout_script.h
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/pgf/base/source/misclayout_script.h')
-rw-r--r--graphics/pgf/base/source/misclayout_script.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/graphics/pgf/base/source/misclayout_script.h b/graphics/pgf/base/source/misclayout_script.h
new file mode 100644
index 0000000000..22ac039b7f
--- /dev/null
+++ b/graphics/pgf/base/source/misclayout_script.h
@@ -0,0 +1,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);
+ }
+};