diff options
Diffstat (limited to 'libxsd-frontend/xsd-frontend/traversal/enumeration.hxx')
-rw-r--r-- | libxsd-frontend/xsd-frontend/traversal/enumeration.hxx | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/libxsd-frontend/xsd-frontend/traversal/enumeration.hxx b/libxsd-frontend/xsd-frontend/traversal/enumeration.hxx deleted file mode 100644 index 960b11c..0000000 --- a/libxsd-frontend/xsd-frontend/traversal/enumeration.hxx +++ /dev/null @@ -1,59 +0,0 @@ -// file : xsd-frontend/traversal/enumeration.hxx -// copyright : Copyright (c) 2005-2014 Code Synthesis Tools CC -// license : GNU GPL v2 + exceptions; see accompanying LICENSE file - -#ifndef XSD_FRONTEND_TRAVERSAL_ENUMERATION_HXX -#define XSD_FRONTEND_TRAVERSAL_ENUMERATION_HXX - -#include <xsd-frontend/traversal/elements.hxx> -#include <xsd-frontend/semantic-graph/enumeration.hxx> - -namespace XSDFrontend -{ - namespace Traversal - { - struct Enumeration : ScopeTemplate<SemanticGraph::Enumeration> - { - virtual void - traverse (Type&); - - virtual void - pre (Type&); - - virtual void - name (Type&); - - virtual void - inherits (Type&); - - void - inherits (Type&, EdgeDispatcher&); - - virtual void - post (Type&); - }; - - struct Enumerator : Node<SemanticGraph::Enumerator> - { - virtual void - traverse (Type&); - - virtual void - pre (Type&); - - virtual void - belongs (Type&, EdgeDispatcher&); - - virtual void - belongs (Type&); - - virtual void - name (Type&); - - virtual void - post (Type&); - }; - } -} - -#endif // XSD_FRONTEND_TRAVERSAL_ENUMERATION_HXX |