aboutsummaryrefslogtreecommitdiff
path: root/examples/cxx/hybrid/evolution/passthrough/xml.cxx
blob: 5fdca1d46e46abff797c4ff048ed5a5d5cf4b31d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// file      : examples/cxx/hybrid/evolution/passthrough/xml.cxx
// copyright : not copyrighted - public domain

#include "xml.hxx"

namespace xml
{
  element::
  ~element ()
  {
    for (elements::iterator i = children_.begin ();
         i != children_.end ();
         ++i)
    {
      delete *i;
    }
  }
}