bazaar: Py: xompile fix without boost; PyConsoleCtrl: some api improvements, BoostPyTest: export PyConsoleCtrl to Py itself, major Callback macrofication; PointCtrl handling fixes

git-svn-id: svn://ultimatepp.org/upp/trunk@3435 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
kohait 2011-05-19 07:21:21 +00:00
parent 31ee2229d3
commit 8922ca4bf4
14 changed files with 610 additions and 122 deletions

View file

@ -12,4 +12,21 @@ BOOST_PYTHON_MODULE(upp)
export_Core();
export_CtrlCore();
export_CtrlLib();
export_PyConsoleCtrl();
export_Callback1(int);
export_Gate1(int);
export_Callback1(Value);
export_Gate1(Value);
export_Callback2(int, double);
export_Gate2(int, double);
export_Callback3(int, double, bool);
export_Gate3(int, double, bool);
export_Callback4(int, double, bool, int64);
export_Gate4(int, double, bool, int64);
}