MCPcopy Create free account
hub / github.com/Open-GD/OpenGD / create

Method create

Source/SongsLayer.cpp:23–35  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

21#include "SongCell.h"
22
23SongsLayer* 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
37void SongsLayer::customSetup()
38{

Callers

nothing calls this directly

Calls 1

initMethod · 0.45

Tested by

no test coverage detected