ultimatepp/bazaar/TestLEDCtrl/TestLEDCtrl.h
koldo a9918fcf41 LEDCtrl: New LED control by Christian (cb31_fr)
git-svn-id: svn://ultimatepp.org/upp/trunk@2585 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2010-08-01 21:18:15 +00:00

27 lines
495 B
C++

#ifndef _TestLEDCtrl_TestLEDCtrl_h
#define _TestLEDCtrl_TestLEDCtrl_h
#include <CtrlLib/CtrlLib.h>
#include "LEDCtrl/LEDCtrl.h"
using namespace Upp;
#define LAYOUTFILE <TestLEDCtrl/TestLEDCtrl.lay>
#include <CtrlCore/lay.h>
class TestLEDCtrl : public WithTestLEDCtrlLayout<TopWindow> {
public:
typedef TestLEDCtrl CLASSNAME;
TestLEDCtrl();
private :
LEDCtrl MyLED ;
AnimatedLEDCtrl MyAnimLed, MyBlinkLed ;
void TerminerApplication( void ) ;
};
#endif