ultimatepp/bazaar/BoostPyTest/modules.cppi
kohait bbc2ef5b80 bazaar: BoostPyTest: Value export for the common types, including String and ValueArray
git-svn-id: svn://ultimatepp.org/upp/trunk@3340 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2011-04-13 21:12:59 +00:00

16 lines
334 B
Text

//CAUTION this one is included in the main cpp file, where the modules are registered into python environment
BOOST_PYTHON_MODULE(hello)
{
export_world();
}
BOOST_PYTHON_MODULE(upp)
{
export_UppCtrl();
export_UppString();
export_UppValue();
export_UppValueArray();
export_SliderCtrl();
export_ValueCtrl();
}