diff options
Diffstat (limited to 'dummy')
-rw-r--r-- | dummy/pybindings.cc | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/dummy/pybindings.cc b/dummy/pybindings.cc index eaecaa3b..affa768a 100644 --- a/dummy/pybindings.cc +++ b/dummy/pybindings.cc @@ -20,15 +20,9 @@ #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; +#include "pybindings.h" void arch_wrap_python() { class_<ChipArgs>("ChipArgs"); + WRAP_RANGE(Wire); } |