summaryrefslogtreecommitdiff
path: root/TAO/tao/Special_Basic_Argument_T.inl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Special_Basic_Argument_T.inl')
-rw-r--r--TAO/tao/Special_Basic_Argument_T.inl40
1 files changed, 20 insertions, 20 deletions
diff --git a/TAO/tao/Special_Basic_Argument_T.inl b/TAO/tao/Special_Basic_Argument_T.inl
index 66887ab09a3..850c2209cbb 100644
--- a/TAO/tao/Special_Basic_Argument_T.inl
+++ b/TAO/tao/Special_Basic_Argument_T.inl
@@ -2,85 +2,85 @@
//
// $Id$
-template<typename S, typename to_S, typename from_S>
+template<typename S, typename to_S, typename from_S, typename Insert_Policy>
ACE_INLINE
-TAO::In_Special_Basic_Argument_T<S,to_S,from_S>::In_Special_Basic_Argument_T (
+TAO::In_Special_Basic_Argument_T<S,to_S,from_S,Insert_Policy>::In_Special_Basic_Argument_T (
S const & x
)
: x_ (x)
{}
-template<typename S, typename to_S, typename from_S>
+template<typename S, typename to_S, typename from_S, typename Insert_Policy>
ACE_INLINE
S const &
-TAO::In_Special_Basic_Argument_T<S,to_S,from_S>::arg (void) const
+TAO::In_Special_Basic_Argument_T<S,to_S,from_S,Insert_Policy>::arg (void) const
{
return this->x_;
}
// ===========================================================================
-template<typename S, typename to_S, typename from_S>
+template<typename S, typename to_S, typename from_S, typename Insert_Policy>
ACE_INLINE
-TAO::Inout_Special_Basic_Argument_T<S,to_S,from_S>::
+TAO::Inout_Special_Basic_Argument_T<S,to_S,from_S,Insert_Policy>::
Inout_Special_Basic_Argument_T (S & x)
: x_ (x)
{}
-template<typename S, typename to_S, typename from_S>
+template<typename S, typename to_S, typename from_S, typename Insert_Policy>
ACE_INLINE
S &
-TAO::Inout_Special_Basic_Argument_T<S,to_S,from_S>::arg (void)
+TAO::Inout_Special_Basic_Argument_T<S,to_S,from_S,Insert_Policy>::arg (void)
{
return this->x_;
}
// ===========================================================================
-template<typename S, typename to_S, typename from_S>
+template<typename S, typename to_S, typename from_S, typename Insert_Policy>
ACE_INLINE
-TAO::Out_Special_Basic_Argument_T<S,to_S,from_S>::
+TAO::Out_Special_Basic_Argument_T<S,to_S,from_S,Insert_Policy>::
Out_Special_Basic_Argument_T (S & x)
: x_ (x)
{}
-template<typename S, typename to_S, typename from_S>
+template<typename S, typename to_S, typename from_S, typename Insert_Policy>
ACE_INLINE
S &
-TAO::Out_Special_Basic_Argument_T<S,to_S,from_S>::arg (void)
+TAO::Out_Special_Basic_Argument_T<S,to_S,from_S,Insert_Policy>::arg (void)
{
return this->x_;
}
// ===========================================================================
-template<typename S, typename to_S, typename from_S>
+template<typename S, typename to_S, typename from_S, typename Insert_Policy>
ACE_INLINE
-TAO::Ret_Special_Basic_Argument_T<S,to_S,from_S>::
+TAO::Ret_Special_Basic_Argument_T<S,to_S,from_S,Insert_Policy>::
Ret_Special_Basic_Argument_T (void)
{
}
-template<typename S, typename to_S, typename from_S>
+template<typename S, typename to_S, typename from_S, typename Insert_Policy>
ACE_INLINE
S &
-TAO::Ret_Special_Basic_Argument_T<S,to_S,from_S>::arg (void)
+TAO::Ret_Special_Basic_Argument_T<S,to_S,from_S,Insert_Policy>::arg (void)
{
return this->x_;
}
-template<typename S, typename to_S, typename from_S>
+template<typename S, typename to_S, typename from_S, typename Insert_Policy>
ACE_INLINE
S
-TAO::Ret_Special_Basic_Argument_T<S,to_S,from_S>::excp (void)
+TAO::Ret_Special_Basic_Argument_T<S,to_S,from_S,Insert_Policy>::excp (void)
{
return this->x_;
}
-template<typename S, typename to_S, typename from_S>
+template<typename S, typename to_S, typename from_S, typename Insert_Policy>
ACE_INLINE
S
-TAO::Ret_Special_Basic_Argument_T<S,to_S,from_S>::retn (void)
+TAO::Ret_Special_Basic_Argument_T<S,to_S,from_S,Insert_Policy>::retn (void)
{
return this->x_;
}