mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 14:16:07 -06:00
16 lines
267 B
C++
16 lines
267 B
C++
#ifndef _Slider_Slider_h
|
|
#define _Slider_Slider_h
|
|
|
|
#include <CtrlLib/CtrlLib.h>
|
|
|
|
using namespace Upp;
|
|
|
|
#define LAYOUTFILE <Slider/Slider.lay>
|
|
#include <CtrlCore/lay.h>
|
|
|
|
class Slider : public WithSliderLayout<TopWindow> {
|
|
public:
|
|
Slider();
|
|
};
|
|
|
|
#endif
|