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

Method create

Source/CreatorLayer.cpp:54–68  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

52}
53
54CreatorLayer* CreatorLayer::create()
55{
56 CreatorLayer* ret = new CreatorLayer();
57 if (ret->init())
58 {
59 ret->autorelease();
60 return ret;
61 }
62 else
63 {
64 delete ret;
65 ret = nullptr;
66 return nullptr;
67 }
68}
69
70bool CreatorLayer::init()
71{

Callers

nothing calls this directly

Calls 1

initMethod · 0.45

Tested by

no test coverage detected