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