#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
// #include "VegaMain.h" Ctrl2::Ctrl2() { edit.SetRect(0,0,20,13); button.SetRect(15,0,30,13); Add(edit); Add(button); }
Report message to a moderator