| 291 | } |
| 292 | |
| 293 | void Node::AddAttribute( const std::string& name, const std::string& val ) |
| 294 | { |
| 295 | assert( m_ptr != 0 ) ; |
| 296 | assert( GetType() == element ) ; |
| 297 | m_ptr->Add( new Impl( name, attr, val ) ) ; |
| 298 | } |
| 299 | |
| 300 | void Node::AddNode( const Node& node ) |
| 301 | { |