rogue
Loading...
Searching...
No Matches
module.cpp
Go to the documentation of this file.
1
18#include "rogue/Directives.h"
19
21
22#include <RogueConfig.h>
23
24#include <boost/python.hpp>
25
32
33namespace bp = boost::python;
34
36 // map the IO namespace to a sub-module
37 bp::object module(bp::handle<>(bp::borrowed(PyImport_AddModule("rogue.protocols"))));
38
39 // make "from mypackage import class1" work
40 bp::scope().attr("protocols") = module;
41
42 // set the current scope to the new sub-module
43 bp::scope io_scope = module;
44
51}
void setup_module()
Definition module.cpp:35