blob: e5c2237a51784df606bd0ebc6f1369decb2470ab (
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
|
// file : xsd-frontend/traversal/attribute-group.cxx
// author : Boris Kolpackov <boris@codesynthesis.com>
// copyright : Copyright (c) 2006-2010 Code Synthesis Tools CC
// license : GNU GPL v2 + exceptions; see accompanying LICENSE file
#include <xsd-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&)
{
}
}
}
|