Revert "Minor modernization of DynamicAny code"
[ACE_TAO.git] / TAO / tao / PortableServer / Fixed_Size_SArgument_T.inl
blob59e21f17e741c99e8b7177270d16e304de9c513f
1 // -*- C++ -*-
2 TAO_BEGIN_VERSIONED_NAMESPACE_DECL
4 template<typename S,
5          template <typename> class Insert_Policy>
6 ACE_INLINE
7 S const &
8 TAO::In_Fixed_Size_SArgument_T<S,Insert_Policy>::arg () const
10   return this->x_;
13 // ==========================================================================
15 template<typename S,
16          template <typename> class Insert_Policy>
17 ACE_INLINE
18 TAO::Inout_Fixed_Size_SArgument_T<S,Insert_Policy>::
19 Inout_Fixed_Size_SArgument_T ()
23 template<typename S,
24          template <typename> class Insert_Policy>
25 ACE_INLINE
26 S &
27 TAO::Inout_Fixed_Size_SArgument_T<S,Insert_Policy>::arg ()
29   return this->x_;
32 // ==========================================================================
34 template<typename S,
35          template <typename> class Insert_Policy>
36 ACE_INLINE
37 TAO::Out_Fixed_Size_SArgument_T<S,
38                                 Insert_Policy>::
39 Out_Fixed_Size_SArgument_T ()
42 template<typename S,
43          template <typename> class Insert_Policy>
44 ACE_INLINE
45 S &
46 TAO::Out_Fixed_Size_SArgument_T<S,Insert_Policy>::arg ()
48   return this->x_;
51 // ==========================================================================
53 template<typename S,
54          template <typename> class Insert_Policy>
55 ACE_INLINE
56 TAO::Ret_Fixed_Size_SArgument_T<S,Insert_Policy>::Ret_Fixed_Size_SArgument_T ()
59 template<typename S,
60          template <typename> class Insert_Policy>
61 ACE_INLINE
62 S &
63 TAO::Ret_Fixed_Size_SArgument_T<S,Insert_Policy>::arg ()
65   return this->x_;
68 TAO_END_VERSIONED_NAMESPACE_DECL