MCPcopy Create free account
hub / github.com/Kitware/CMake / cmXCodeObject

Method cmXCodeObject

Source/cmXCodeObject.cxx:42–56  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

40}
41
42cmXCodeObject::cmXCodeObject(PBXType ptype, Type type, std::string id)
43{
44 this->Version = 15;
45 this->Target = nullptr;
46 this->Object = nullptr;
47
48 this->IsA = ptype;
49
50 this->Id = std::move(id);
51
52 this->TypeValue = type;
53 if (this->TypeValue == OBJECT) {
54 this->AddAttribute("isa", nullptr);
55 }
56}
57
58bool cmXCodeObject::IsEmpty() const
59{

Callers

nothing calls this directly

Calls 2

AddAttributeMethod · 0.95
moveFunction · 0.85

Tested by

no test coverage detected