12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- #ifndef __UIHBox_H__
- #define __UIHBox_H__
- #include "ui/UILayout.h"
- #include "ui/GUIExport.h"
- NS_CC_BEGIN
- namespace ui {
- class CC_GUI_DLL HBox : public Layout{
- public:
-
-
- HBox();
-
-
- virtual ~HBox();
-
-
- static HBox* create();
-
-
- static HBox* create(const Size& size);
-
- CC_CONSTRUCTOR_ACCESS:
-
- virtual bool init() override;
- virtual bool initWithSize(const Size& size);
- };
-
- }
- NS_CC_END
- #endif
|