summaryrefslogtreecommitdiff
path: root/include/ouroboros/wrap/ouroboros.i
diff options
context:
space:
mode:
authorSander Vrijders <sander.vrijders@intec.ugent.be>2016-08-16 18:39:35 +0200
committerSander Vrijders <sander.vrijders@intec.ugent.be>2016-08-16 18:39:35 +0200
commit1139fc0aa0869485566c0c3ed0c9f2d2ecf00cb4 (patch)
tree9dd6022290a92803be4de438aaed7b70290a08cd /include/ouroboros/wrap/ouroboros.i
parentfbc0b71d3947cb6047e3e710d606ffc6a39778bc (diff)
downloadouroboros-1139fc0aa0869485566c0c3ed0c9f2d2ecf00cb4.tar.gz
ouroboros-1139fc0aa0869485566c0c3ed0c9f2d2ecf00cb4.zip
lib: Add wrappers for Python
This adds SWIG to the build and wraps the Ouroboros library so that it can be called through Python scripts. If either SWIG or Python cannot be found, no bindings are generated.
Diffstat (limited to 'include/ouroboros/wrap/ouroboros.i')
-rw-r--r--include/ouroboros/wrap/ouroboros.i44
1 files changed, 44 insertions, 0 deletions
diff --git a/include/ouroboros/wrap/ouroboros.i b/include/ouroboros/wrap/ouroboros.i
new file mode 100644
index 00000000..386c21cc
--- /dev/null
+++ b/include/ouroboros/wrap/ouroboros.i
@@ -0,0 +1,44 @@
+/*
+ * Ouroboros - Copyright (C) 2016
+ *
+ * SWIG wrapper file
+ *
+ * Sander Vrijders <sander.vrijders@intec.ugent.be>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ */
+
+%module ouroboros
+%{
+#include "ouroboros/cdap.h"
+#include "ouroboros/dev.h"
+#include "ouroboros/errno.h"
+#include "ouroboros/flow.h"
+#include "ouroboros/irm.h"
+#include "ouroboros/irm_config.h"
+#include "ouroboros/nsm.h"
+#include "ouroboros/qos.h"
+%}
+
+typedef int pid_t;
+
+%include "ouroboros/cdap.h"
+%include "ouroboros/dev.h"
+%include "ouroboros/errno.h"
+%include "ouroboros/flow.h"
+%include "ouroboros/irm.h"
+%include "ouroboros/irm_config.h"
+%include "ouroboros/nsm.h"
+%include "ouroboros/qos.h"