| 21 | #include "SongCell.h" |
| 22 | |
| 23 | SongsLayer* SongsLayer::create() |
| 24 | { |
| 25 | auto pRet = new SongsLayer(); |
| 26 | |
| 27 | if (pRet && pRet->init(pRet->_listView, "Soundtracks")) |
| 28 | { |
| 29 | pRet->autorelease(); |
| 30 | return pRet; |
| 31 | } |
| 32 | |
| 33 | AX_SAFE_DELETE(pRet); |
| 34 | return nullptr; |
| 35 | } |
| 36 | |
| 37 | void SongsLayer::customSetup() |
| 38 | { |