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