mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 14:16:07 -06:00
21 lines
292 B
C++
21 lines
292 B
C++
#ifndef _GTestUIExample_AppWindow_h_
|
|
#define _GTestUIExample_AppWindow_h_
|
|
|
|
#include <CtrlLib/CtrlLib.h>
|
|
|
|
namespace Upp
|
|
{
|
|
class AppWindow : public TopWindow
|
|
{
|
|
public:
|
|
Button button;
|
|
|
|
public:
|
|
AppWindow();
|
|
|
|
private:
|
|
virtual void OnButtonClick();
|
|
};
|
|
}
|
|
|
|
#endif
|