ultimatepp/bazaar/TimerTest/TimerTest.h
koldo b286a613b6 Timer test: First release
git-svn-id: svn://ultimatepp.org/upp/trunk@2100 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2010-02-19 23:07:46 +00:00

25 lines
417 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();
void Info(const String & s);
void Test();
private:
Timer t;
};
#endif