00001 // -*- C++ -*- 00002 // 00003 // $Id: Sequence_TypeCode.inl 83309 2008-10-17 13:57:39Z johnnyw $ 00004 00005 TAO_BEGIN_VERSIONED_NAMESPACE_DECL 00006 00007 template <typename TypeCodeType, class RefCountPolicy> 00008 ACE_INLINE 00009 TAO::TypeCode::Sequence<TypeCodeType, RefCountPolicy>::Sequence ( 00010 CORBA::TCKind kind, 00011 TypeCodeType const & content_type, 00012 CORBA::ULong length) 00013 : ::CORBA::TypeCode (kind) 00014 , RefCountPolicy () 00015 , content_type_ (content_type) 00016 , length_ (length) 00017 { 00018 // ACE_ASSERT (kind == CORBA::tk_array || kind == CORBA::tk_sequence); 00019 } 00020 00021 TAO_END_VERSIONED_NAMESPACE_DECL