mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 06:05:58 -06:00
26 lines
525 B
C++
26 lines
525 B
C++
#ifndef _BoostPyTest_BoostPyTest_h_
|
|
#define _BoostPyTest_BoostPyTest_h_
|
|
|
|
#include <PyConsoleCtrl/PyConsoleCtrl.h>
|
|
using namespace boost::python;
|
|
|
|
#include "world.h"
|
|
#include <CtrlLibBoostPy/CtrlLibBoostPy.h>
|
|
using namespace Upp;
|
|
|
|
#define LAYOUTFILE <BoostPyTest/BoostPyTest.lay>
|
|
#include <CtrlCore/lay.h>
|
|
|
|
class BoostPyTest : public WithBoostPyTestLayout<TopWindow> {
|
|
public:
|
|
typedef BoostPyTest CLASSNAME;
|
|
BoostPyTest();
|
|
~BoostPyTest();
|
|
|
|
void ExitHandler();
|
|
|
|
World w;
|
|
Progress pr;
|
|
};
|
|
|
|
#endif
|