| 33 | USING_NS_AX; |
| 34 | |
| 35 | SongCell* SongCell::create(SongObject* songInfo) |
| 36 | { |
| 37 | auto pRet = new SongCell(); |
| 38 | |
| 39 | if (pRet && pRet->init(songInfo)) |
| 40 | { |
| 41 | pRet->autorelease(); |
| 42 | return pRet; |
| 43 | } |
| 44 | |
| 45 | AX_SAFE_DELETE(pRet); |
| 46 | return nullptr; |
| 47 | } |
| 48 | |
| 49 | void SongCell::updateBGColor(int num) |
| 50 | { |