| 99 | return cm::contains(this->List, o); |
| 100 | } |
| 101 | void AddUniqueObject(cmXCodeObject* value) |
| 102 | { |
| 103 | if (!cm::contains(this->List, value)) { |
| 104 | this->List.push_back(value); |
| 105 | } |
| 106 | } |
| 107 | static void Indent(int level, std::ostream& out); |
| 108 | void Print(std::ostream& out); |
| 109 | void PrintAttribute(std::ostream& out, int level, |
no test coverage detected