ultimatepp/bazaar/TimerTest/TimerTest.h
kohait cd8510db6e Timer: smaller glitches with 'sleep time remainder', TimerTest: proper close / wait for Timer enabled applications example
git-svn-id: svn://ultimatepp.org/upp/trunk@2549 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2010-07-19 11:23:24 +00:00

30 lines
492 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