00001
00002
00003
00004
00005
00006 #ifndef GROUP_BOX_H_1152692329
00007 #define GROUP_BOX_H_1152692329
00008 #include "base_control.h"
00009
00010 namespace crs {
00011
00012 class group_box: public base_control {
00013 private:
00014 std::string caption;
00015 public:
00016 group_box( const std::string &caption, base_control *Parent,
00017 const unsigned int Left=0, const unsigned int Top=0, const unsigned int Width=3, const unsigned int Height=3 );
00018 virtual void draw();
00019 };
00020
00021 }
00022
00023 #endif
00024