| 120 | std::string const& GetComment() const { return this->Comment; } |
| 121 | bool HasComment() const { return (!this->Comment.empty()); } |
| 122 | cmXCodeObject* GetAttribute(char const* name) const |
| 123 | { |
| 124 | auto const i = this->ObjectAttributes.find(name); |
| 125 | if (i != this->ObjectAttributes.end()) { |
| 126 | return i->second; |
| 127 | } |
| 128 | return nullptr; |
| 129 | } |
| 130 | // search the attribute list for an object of the specified type |
| 131 | cmXCodeObject* GetObject(cmXCodeObject::PBXType t) const |
| 132 | { |
no test coverage detected