| 81 | |
| 82 | template<class T> |
| 83 | void AppendValue(const T& text) { |
| 84 | // by pg@ advice, do not parse enum value |
| 85 | // leave it to C++ compiler to parse/interpret |
| 86 | |
| 87 | if (!CurrentItem.Value) |
| 88 | CurrentItem.Value = TString(); |
| 89 | |
| 90 | *CurrentItem.Value += text; |
| 91 | } |
| 92 | |
| 93 | void DoEnd() override { |
| 94 | AddEnumItem(); |
no outgoing calls
no test coverage detected