| 67 | } |
| 68 | |
| 69 | void cmWIXSourceWriter::BeginElement(std::string const& name) |
| 70 | { |
| 71 | if (State == BEGIN) { |
| 72 | File << '>'; |
| 73 | } |
| 74 | |
| 75 | File << '\n'; |
| 76 | Indent(Elements.size()); |
| 77 | File << '<' << name; |
| 78 | |
| 79 | Elements.push_back(name); |
| 80 | State = BEGIN; |
| 81 | } |
| 82 | |
| 83 | void cmWIXSourceWriter::EndElement(std::string const& name) |
| 84 | { |
no test coverage detected