mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-17 06:06:00 -06:00
14 lines
244 B
C++
14 lines
244 B
C++
#ifndef _ForlanoVega_TwoCtrl_h_
|
|
#define _ForlanoVega_TwoCtrl_h_
|
|
|
|
#include <CtrlLib/CtrlLib.h>
|
|
|
|
class Ctrl2 : public ParentCtrl {
|
|
EditField edit;
|
|
Button button;
|
|
public:
|
|
typedef Ctrl2 CLASSNAME;
|
|
Ctrl2();
|
|
~Ctrl2() {;}
|
|
};
|
|
#endif
|