| 228 | } |
| 229 | |
| 230 | String BfCodeGenDirectoryData::GetValue(const StringImpl& key) |
| 231 | { |
| 232 | String* valuePtr = NULL; |
| 233 | if (mBuildSettings.TryGetValue(key, &valuePtr)) |
| 234 | { |
| 235 | return *valuePtr; |
| 236 | } |
| 237 | return String(); |
| 238 | } |
| 239 | |
| 240 | void BfCodeGenDirectoryData::SetValue(const StringImpl& key, const StringImpl& value) |
| 241 | { |
no test coverage detected