ultimatepp/bazaar/GoogleTestUIExample/AppWindow.h
klugier e39620c940 Bazaar: GoogleTestUIExample now shows how to simulate click and mock action.
git-svn-id: svn://ultimatepp.org/upp/trunk@14992 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2020-09-05 23:56:21 +00:00

21 lines
274 B
C++

#ifndef _Test_AppWindow_h_
#define _Test_AppWindow_h_
#include <CtrlLib/CtrlLib.h>
namespace Upp
{
class AppWindow : public TopWindow
{
public:
Button button;
public:
AppWindow();
protected:
virtual void OnButtonClick();
};
}
#endif