| 550 | } |
| 551 | |
| 552 | void cmCacheManager::CacheEntry::SetValue(cmValue value) |
| 553 | { |
| 554 | if (value) { |
| 555 | this->Value = *value; |
| 556 | this->Initialized = true; |
| 557 | } else { |
| 558 | this->Value.clear(); |
| 559 | } |
| 560 | } |
| 561 | |
| 562 | std::vector<std::string> cmCacheManager::CacheEntry::GetPropertyList() const |
| 563 | { |