// file : xsde/cxx/serializer/generator.hxx // copyright : Copyright (c) 2005-2011 Code Synthesis Tools CC // license : GNU GPL v2 + exceptions; see accompanying LICENSE file #ifndef CXX_SERIALIZER_GENERATOR_HXX #define CXX_SERIALIZER_GENERATOR_HXX #include // Path #include #include #include #include #include namespace CXX { namespace Serializer { class Generator { public: static void usage (); // Assign names to global declarations. // static void process_names (options const&, XSDFrontend::SemanticGraph::Schema&, XSDFrontend::SemanticGraph::Path const&); // Generate code. // struct Failed {}; static size_t generate (options const&, XSDFrontend::SemanticGraph::Schema&, XSDFrontend::SemanticGraph::Path const&, bool file_per_type, TypeMap::Namespaces& type_map, bool gen_driver, const WarningSet& disabled_warnings, FileList&, AutoUnlinks&); private: Generator (); }; } } #endif // CXX_SERIALIZER_GENERATOR_HXX