aboutsummaryrefslogtreecommitdiff
path: root/xsd-frontend/traversal/element-group.cxx
blob: c53c097e1018fcd40c358b639d1948b9a911a983 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// file      : xsd-frontend/traversal/element-group.cxx
// license   : GNU GPL v2 + exceptions; see accompanying LICENSE file

#include <xsd-frontend/traversal/element-group.hxx>

namespace XSDFrontend
{
  namespace Traversal
  {
    void ElementGroup::
    traverse (Type& g)
    {
      pre (g);
      names (g);
      contains_compositor (g);
      post (g);
    }

    void ElementGroup::
    pre (Type&)
    {
    }

    void ElementGroup::
    contains_compositor (Type& g, EdgeDispatcher& d)
    {
      d.dispatch (g.contains_compositor ());
    }

    void ElementGroup::
    contains_compositor (Type& g)
    {
      contains_compositor (g, *this);
    }

    void ElementGroup::
    post (Type&)
    {
    }
  }
}