// file : xsd/cxx/parser/map.ixx // author : Boris Kolpackov // copyright : Copyright (c) 2005-2011 Code Synthesis Tools CC // license : GNU GPL v2 + exceptions; see accompanying LICENSE file namespace xsd { namespace cxx { namespace parser { // parser_map_impl // template inline parser_map_impl::parser_map_impl () { } template inline void parser_map_impl:: insert (parser_base& parser) { map_[parser._dynamic_type ()] = &parser; } } } }