// file : xsd/cxx/parser/generator.hxx // author : Boris Kolpackov // copyright : Copyright (c) 2005-2010 Code Synthesis Tools CC // license : GNU GPL v2 + exceptions; see accompanying LICENSE file #ifndef CXX_PARSER_GENERATOR_HXX #define CXX_PARSER_GENERATOR_HXX #include #include #include #include #include // Path #include #include #include #include namespace CXX { namespace Parser { using namespace Cult::Types; class Generator { public: static Void usage (); static CLI::OptionsSpec options_spec (); struct Failed {}; static UnsignedLong generate (CLI::Options const& options, XSDFrontend::SemanticGraph::Schema&, XSDFrontend::SemanticGraph::Path const& file, StringLiteralMap const&, Boolean gen_driver, const WarningSet& disabled_warnings, FileList& file_list, AutoUnlinks& unlinks); private: Generator (); }; } } #endif // CXX_PARSER_GENERATOR_HXX