From f0510d2f90467de8e8f260b47d79a9baaf9bef17 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 17 Sep 2009 07:15:29 +0200 Subject: Start tracking XSD with git --- xsd/type-map/parser.hxx | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 xsd/type-map/parser.hxx (limited to 'xsd/type-map/parser.hxx') diff --git a/xsd/type-map/parser.hxx b/xsd/type-map/parser.hxx new file mode 100644 index 0000000..514ad86 --- /dev/null +++ b/xsd/type-map/parser.hxx @@ -0,0 +1,46 @@ +// file : xsd/type-map/parser.hxx +// author : Boris Kolpackov +// copyright : Copyright (c) 2007-2009 Code Synthesis Tools CC +// license : GNU GPL v2 + exceptions; see accompanying LICENSE file + +#ifndef XSD_TYPE_MAP_PARSER_HXX +#define XSD_TYPE_MAP_PARSER_HXX + +#include + +#include +#include + +namespace TypeMap +{ + using namespace Cult::Types; + typedef WideString String; + + class Parser + { + public: + Parser (Lexer&, String const& path); + + // Merge parsed namespaces. + // + Boolean + parse (Namespaces&); + + private: + Boolean + namespace_ (Namespaces&); + + Boolean + include (Namespace&); + + Boolean + type (Lexer::Token, Namespace&); + + private: + Lexer& lex_; + String path_; + std::wostream& e; + }; +} + +#endif // XSD_TYPE_MAP_PARSER_HXX -- cgit v1.1