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