mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 22:02:49 -06:00
16 lines
334 B
Text
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();
|
|
}
|