mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 14:16:09 -06:00
25 lines
444 B
C++
25 lines
444 B
C++
#ifndef _PyShellTest_PyShellTest_h
|
|
#define _PyShellTest_PyShellTest_h
|
|
|
|
#include <PyShell/PyShell.h>
|
|
|
|
#include <CtrlLib/CtrlLib.h>
|
|
using namespace Upp;
|
|
|
|
#define LAYOUTFILE <PyShellTest/PyShellTest.lay>
|
|
#include <CtrlCore/lay.h>
|
|
|
|
class PyShellTest : public WithPyShellTestLayout<TopWindow> {
|
|
public:
|
|
typedef PyShellTest CLASSNAME;
|
|
PyShellTest();
|
|
~PyShellTest();
|
|
|
|
void StartNew();
|
|
|
|
protected:
|
|
PyShell ps;
|
|
};
|
|
|
|
#endif
|
|
|