mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 14:16:09 -06:00
19 lines
344 B
C++
19 lines
344 B
C++
#ifndef _ScrollBug_ScrollBug_h
|
|
#define _ScrollBug_ScrollBug_h
|
|
|
|
#include <CtrlLib/CtrlLib.h>
|
|
|
|
using namespace Upp;
|
|
|
|
#define LAYOUTFILE <ScrollBug/ScrollBug.lay>
|
|
#include <CtrlCore/lay.h>
|
|
|
|
class ScrollBug : public WithScrollBugLayout<TopWindow> {
|
|
public:
|
|
typedef ScrollBug CLASSNAME;
|
|
ScrollBug();
|
|
|
|
LineEdit edit;
|
|
};
|
|
|
|
#endif
|