summaryrefslogtreecommitdiff
path: root/libxsd/xsd/cxx/parser/map.ixx
blob: 8e48696116c9ceecd69859c88c0bab8bc2822d9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// file      : xsd/cxx/parser/map.ixx
// copyright : Copyright (c) 2005-2017 Code Synthesis Tools CC
// license   : GNU GPL v2 + exceptions; see accompanying LICENSE file

namespace xsd
{
  namespace cxx
  {
    namespace parser
    {
      // parser_map_impl
      //
      template <typename C>
      inline parser_map_impl<C>::parser_map_impl ()
      {
      }

      template <typename C>
      inline void parser_map_impl<C>::
      insert (parser_base<C>& parser)
      {
        map_[parser._dynamic_type ()] = &parser;
      }
    }
  }
}