Go to the documentation of this file.00001
00002
00003
00004
00005 TAO_BEGIN_VERSIONED_NAMESPACE_DECL
00006
00007 template <typename StringType,
00008 class EnumeratorArrayType,
00009 class RefCountPolicy>
00010 ACE_INLINE
00011 TAO::TypeCode::Enum<StringType, EnumeratorArrayType, RefCountPolicy>::Enum (
00012 char const * id,
00013 char const * name,
00014 EnumeratorArrayType const & enumerators,
00015 CORBA::ULong nenumerators)
00016 : ::CORBA::TypeCode (CORBA::tk_enum)
00017 , RefCountPolicy ()
00018 , base_attributes_ (id, name)
00019 , nenumerators_ (nenumerators)
00020 , enumerators_ (enumerators)
00021 {
00022 }
00023
00024 TAO_END_VERSIONED_NAMESPACE_DECL