mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 14:16:07 -06:00
31 lines
489 B
C++
31 lines
489 B
C++
#ifndef _TimerTest_TimerTest_h
|
|
#define _TimerTest_TimerTest_h
|
|
|
|
#include <CtrlLib/CtrlLib.h>
|
|
#include <Timer/Timer.h>
|
|
|
|
namespace Upp {
|
|
|
|
#define LAYOUTFILE <TimerTest/TimerTest.lay>
|
|
#include <CtrlCore/lay.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
|