mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-30 14:22:28 -06:00
21 lines
271 B
C++
21 lines
271 B
C++
#ifndef _Test_AppWindow_h_
|
|
#define _Test_AppWindow_h_
|
|
|
|
#include <CtrlLib/CtrlLib.h>
|
|
|
|
namespace Upp
|
|
{
|
|
class AppWindow final : public TopWindow
|
|
{
|
|
public:
|
|
AppWindow();
|
|
|
|
private:
|
|
void OnClick();
|
|
|
|
private:
|
|
Button button;
|
|
};
|
|
}
|
|
|
|
#endif
|