| 74 | } |
| 75 | |
| 76 | void AddAttributeIfNotEmpty(std::string const& name, cmXCodeObject* value) |
| 77 | { |
| 78 | if (value && !value->IsEmpty()) { |
| 79 | AddAttribute(name, value); |
| 80 | } |
| 81 | } |
| 82 | |
| 83 | void SetObject(cmXCodeObject* value) { this->Object = value; } |
| 84 | cmXCodeObject* GetObject() { return this->Object; } |
no test coverage detected