ultimatepp/bazaar/TimerTest/TimerTest.h
klugier 8560f9295f Bazaar: Timer remove using namespace Upp directive.
git-svn-id: svn://ultimatepp.org/upp/trunk@15200 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2020-10-04 20:08:01 +00:00

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