| 49 | { |
| 50 | |
| 51 | PageViewIndicator* PageViewIndicator::create() |
| 52 | { |
| 53 | PageViewIndicator* node = new PageViewIndicator(); |
| 54 | if (node->init()) |
| 55 | { |
| 56 | node->autorelease(); |
| 57 | return node; |
| 58 | } |
| 59 | AX_SAFE_DELETE(node); |
| 60 | return nullptr; |
| 61 | } |
| 62 | |
| 63 | PageViewIndicator::PageViewIndicator() |
| 64 | : _direction(PageView::Direction::HORIZONTAL) |
nothing calls this directly
no test coverage detected