| 254 | } |
| 255 | |
| 256 | LAppView* LAppView::createDrawNode() |
| 257 | { |
| 258 | LAppView* ret = new(std::nothrow) LAppView(); |
| 259 | if (ret && ret->init()) |
| 260 | { |
| 261 | ret->autorelease(); |
| 262 | return ret; |
| 263 | } |
| 264 | AX_SAFE_DELETE(ret); |
| 265 | return nullptr; |
| 266 | } |
nothing calls this directly
no test coverage detected