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

Method InsertObject

Source/cmXCodeObject.h:87–92  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

85 void AddObject(cmXCodeObject* value) { this->List.push_back(value); }
86 size_t GetObjectCount() { return this->List.size(); }
87 void InsertObject(size_t position, cmXCodeObject* value)
88 {
89 if (position < GetObjectCount()) {
90 this->List.insert(this->List.begin() + position, value);
91 }
92 }
93 void PrependObject(cmXCodeObject* value)
94 {
95 this->List.insert(this->List.begin(), value);

Callers 1

AddEmbeddedObjectsMethod · 0.80

Calls 2

insertMethod · 0.45
beginMethod · 0.45

Tested by

no test coverage detected