ultimatepp/bazaar/BoostPyTest/main.cpp
kohait 1b334d9d1d bazaar: BoostPyTest: convenience restructure, prepare compile MSC10
git-svn-id: svn://ultimatepp.org/upp/trunk@4099 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2011-10-24 19:41:16 +00:00

25 lines
320 B
C++

#include "BoostPyTest.h"
BoostPyTest::BoostPyTest()
{
CtrlLayout(*this, "Boost Test");
Sizeable().Zoomable();
InitPyEnv();
}
BoostPyTest::~BoostPyTest()
{
// Py_Finalize();
}
void BoostPyTest::ExitHandler()
{
SetTimeCallback(1000, Breaker());
}
GUI_APP_MAIN
{
BoostPyTest().Run();
}