| 52 | } |
| 53 | |
| 54 | CAsset CAssetsDir::GetAsset(const std::string& label) const |
| 55 | { |
| 56 | auto it = mapAssets.find(label); |
| 57 | if (it != mapAssets.end()) |
| 58 | return it->second; |
| 59 | return CAsset(); |
| 60 | } |
| 61 | |
| 62 | AssetMetadata CAssetsDir::GetMetadata(const CAsset& asset) const |
| 63 | { |
no test coverage detected