// file : processing/inheritance/processor.hxx // 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 {}; void process (XSDFrontend::SemanticGraph::Schema&, XSDFrontend::SemanticGraph::Path const& file); }; } } #endif // PROCESSING_INHERITANCE_PROCESSOR_HXX