// file : xsd/cxx/tree/generator.hxx // author : Boris Kolpackov // copyright : Copyright (c) 2005-2009 Code Synthesis Tools CC // license : GNU GPL v2 + exceptions; see accompanying LICENSE file #ifndef CXX_TREE_GENERATOR_HXX #define CXX_TREE_GENERATOR_HXX #include #include // Path #include #include #include namespace CXX { namespace Tree { 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, const WarningSet& disabled_warnings, FileList& file_list, AutoUnlinks& unlinks); private: Generator (); }; } } #endif // CXX_TREE_GENERATOR_HXX