|
| template<class t_TYPE > |
| static bsl::enable_if<!IsDynamic< t_TYPE >::value, AnyConstRef >::type | makeAnyConstRef (const t_TYPE &object) |
| |
| template<class t_TYPE > |
| static bsl::enable_if< IsDynamic< t_TYPE >::value, AnyConstRef >::type | makeAnyConstRef (const t_TYPE &object) |
| |
| template<class t_TYPE > |
| static bsl::enable_if<!IsDynamic< t_TYPE >::value, AnyRef >::type | makeAnyRef (t_TYPE &object) |
| |
| template<class t_TYPE > |
| static bsl::enable_if< IsDynamic< t_TYPE >::value, AnyRef >::type | makeAnyRef (t_TYPE &object) |
| |
| template<class t_TYPE > |
| static bsl::enable_if< IsArray< t_TYPE >::value, ArrayRef >::type | wrap (t_TYPE &object) |
| |
| template<class t_TYPE > |
| static bsl::enable_if< IsArray< t_TYPE >::value, ArrayConstRef >::type | wrap (const t_TYPE &object) |
| |
| template<class t_TYPE > |
| static bsl::enable_if< IsChoice< t_TYPE >::value, ChoiceRef >::type | wrap (t_TYPE &object) |
| |
| template<class t_TYPE > |
| static bsl::enable_if< IsChoice< t_TYPE >::value, ChoiceConstRef >::type | wrap (const t_TYPE &object) |
| |
| template<class t_TYPE > |
| static bsl::enable_if< IsCustomized< t_TYPE >::value, CustomizedTypeRef >::type | wrap (t_TYPE &object) |
| |
| template<class t_TYPE > |
| static bsl::enable_if< IsCustomized< t_TYPE >::value, CustomizedTypeConstRef >::type | wrap (const t_TYPE &object) |
| |
| template<class t_TYPE > |
| static bsl::enable_if< IsEnum< t_TYPE >::value, EnumRef >::type | wrap (t_TYPE &object) |
| |
| template<class t_TYPE > |
| static bsl::enable_if< IsEnum< t_TYPE >::value, EnumConstRef >::type | wrap (const t_TYPE &object) |
| |
| template<class t_TYPE > |
| static bsl::enable_if< IsNullable< t_TYPE >::value, NullableValueRef >::type | wrap (t_TYPE &object) |
| |
| template<class t_TYPE > |
| static bsl::enable_if< IsNullable< t_TYPE >::value, NullableValueConstRef >::type | wrap (const t_TYPE &object) |
| |
| template<class t_TYPE > |
| static bsl::enable_if< IsSequence< t_TYPE >::value, SequenceRef >::type | wrap (t_TYPE &object) |
| |
| template<class t_TYPE > |
| static bsl::enable_if< IsSequence< t_TYPE >::value, SequenceConstRef >::type | wrap (const t_TYPE &object) |
| |
| template<class t_TYPE > |
| static bsl::enable_if< IsSimple< t_TYPE >::value, SimpleTypeRef >::type | wrap (t_TYPE &object) |
| |
| template<class t_TYPE > |
| static bsl::enable_if< IsSimple< t_TYPE >::value, SimpleTypeConstRef >::type | wrap (const t_TYPE &object) |
| |