// file : xsd/cxx/tree/elements.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 tree { // type // inline _type:: _type () : container_ (0) { } template inline _type:: _type (const C*) : container_ (0) { } // simple_type // template inline simple_type:: simple_type () { } template template inline simple_type:: simple_type (const C*) { } } } }