--------------------------------- I_Asset::SetReferenceIds Create the reference list from a vector of strings - can't make list a const ref thanks to rttr
| 138 | // - can't make list a const ref thanks to rttr |
| 139 | // |
| 140 | void I_Asset::SetReferenceIds(std::vector<HashString> val) |
| 141 | { |
| 142 | m_References.clear(); |
| 143 | for (HashString const refId : val) |
| 144 | { |
| 145 | m_References.emplace_back(refId); |
| 146 | } |
| 147 | } |
| 148 | |
| 149 | //--------------------------------- |
| 150 | // I_Asset::Load |
nothing calls this directly
no outgoing calls
no test coverage detected