blob: 85a320d1e223c1afeacdd3fda5efd067dfdb4949 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// file : xsd-frontend/traversal/any.hxx
// copyright : Copyright (c) 2005-2014 Code Synthesis Tools CC
// license : GNU GPL v2 + exceptions; see accompanying LICENSE file
#ifndef XSD_FRONTEND_TRAVERSAL_ANY_HXX
#define XSD_FRONTEND_TRAVERSAL_ANY_HXX
#include <xsd-frontend/traversal/elements.hxx>
#include <xsd-frontend/semantic-graph/any.hxx>
namespace XSDFrontend
{
namespace Traversal
{
typedef
Node<SemanticGraph::Any>
Any;
}
}
#endif // XSD_FRONTEND_TRAVERSAL_ANY_HXX
|