aboutsummaryrefslogtreecommitdiff
path: root/xsd-frontend/traversal/union.cxx
blob: bb156d43ffb3d9265421a9a8a771d68d790f4436 (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
// file      : xsd-frontend/traversal/union.cxx
// author    : Boris Kolpackov <boris@codesynthesis.com>
// copyright : Copyright (c) 2005-2009 Code Synthesis Tools CC
// license   : GNU GPL v2 + exceptions; see accompanying LICENSE file

#include <xsd-frontend/traversal/union.hxx>

namespace XSDFrontend
{
  namespace Traversal
  {
    Void Union::
    traverse (Type& l)
    {
      pre (l);
      name (l);
      post (l);
    }

    Void Union::
    pre (Type&)
    {
    }

    Void Union::
    name (Type&)
    {
    }

    Void Union::
    post (Type&)
    {
    }
  }
}