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