bazaar: PyConsoleCtrl: history functionality, BoostPyTest: Value exposure as int, first try, starting upp module

git-svn-id: svn://ultimatepp.org/upp/trunk@3339 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
kohait 2011-04-13 14:54:33 +00:00
parent f74addaae5
commit d4d3d7f8ad
16 changed files with 321 additions and 109 deletions

View file

@ -0,0 +1,14 @@
//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_SliderCtrl();
}