ultimatepp/bazaar/TimerTest/TimerTest.h
cxl 4c68f62833 bazaar: Fixing...
git-svn-id: svn://ultimatepp.org/upp/trunk@9134 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2015-11-02 07:33:29 +00:00

30 lines
491 B
C++

#ifndef _TimerTest_TimerTest_h
#define _TimerTest_TimerTest_h
#include <CtrlLib/CtrlLib.h>
using namespace Upp;
#define LAYOUTFILE <TimerTest/TimerTest.lay>
#include <CtrlCore/lay.h>
#include <Timer/Timer.h>
class TimerTest : public WithLayout<TopWindow> {
public:
typedef TimerTest CLASSNAME;
TimerTest();
~TimerTest();
void Close0();
virtual void Close();
void Info(const String & s);
void Test();
private:
Timer t;
Atomic demo;
};
#endif