aboutsummaryrefslogtreecommitdiffstats
path: root/dummy/pybindings.cc
diff options
context:
space:
mode:
Diffstat (limited to 'dummy/pybindings.cc')
-rw-r--r--dummy/pybindings.cc14
1 files changed, 14 insertions, 0 deletions
diff --git a/dummy/pybindings.cc b/dummy/pybindings.cc
new file mode 100644
index 00000000..5e49eaa5
--- /dev/null
+++ b/dummy/pybindings.cc
@@ -0,0 +1,14 @@
+#include "design.h"
+#include "chip.h"
+#include <utility>
+#include <stdexcept>
+#include <boost/python.hpp>
+#include <boost/python/suite/indexing/vector_indexing_suite.hpp>
+#include <boost/python/suite/indexing/map_indexing_suite.hpp>
+#include <boost/python/suite/indexing/map_indexing_suite.hpp>
+
+using namespace boost::python;
+
+void arch_wrap_python() {
+ class_<ChipArgs>("ChipArgs");
+}