// file : processing/inheritance/processor.hxx // author : Boris Kolpackov // copyright : Copyright (c) 2006-2011 Code Synthesis Tools CC // license : GNU GPL v2 + exceptions; see accompanying LICENSE file #ifndef PROCESSING_INHERITANCE_PROCESSOR_HXX #define PROCESSING_INHERITANCE_PROCESSOR_HXX #include // Path #include #include namespace Processing { namespace Inheritance { class Processor { public: struct Failed {}; // If a type of an element or attribute has a context entry // with the by_value_key key and it is true, then this type // is rearranged to appear before the type containing this // element/attribute. // void process (XSDFrontend::SemanticGraph::Schema&, XSDFrontend::SemanticGraph::Path const& file, char const* by_value_key = 0); }; } } #endif // PROCESSING_INHERITANCE_PROCESSOR_HXX