aboutsummaryrefslogtreecommitdiff
path: root/libxsd-frontend/traversal/attribute-group.cxx
blob: af0b3f33c07e06041d17745cf9aa981942541d13 (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
// file      : libxsd-frontend/traversal/attribute-group.cxx
// license   : GNU GPL v2 + exceptions; see accompanying LICENSE file

#include <libxsd-frontend/traversal/attribute-group.hxx>

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

    void AttributeGroup::
    pre (Type&)
    {
    }

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