| 269 | } |
| 270 | template <typename T> |
| 271 | void IXmlNode::SetAttribute(const std::string &key, const T &value) { |
| 272 | std::ostringstream temp; |
| 273 | temp << value; |
| 274 | attribute_list_.insert({key, temp.str()}); |
| 275 | } |
| 276 | |
| 277 | template <typename T> |
| 278 | T IXmlNode::Value() const { |