Merge pull request #2309 from mitza-oci/warnings
[ACE_TAO.git] / TAO / tao / DynamicInterface / DII_Arguments.inl
blob5f02d5cab99a399df865a063ad29acb0d392577b
1 // -*- C++ -*-
2 TAO_BEGIN_VERSIONED_NAMESPACE_DECL
4 namespace TAO
6   ACE_INLINE
7   NamedValue_Argument::NamedValue_Argument (CORBA::NamedValue_ptr x)
8     : x_ (x)
9   {
10   }
12   ACE_INLINE int
13   NamedValue_Argument::byte_order () const
14   {
15     return this->byte_order_;
16   }
18   // ===================================================================
20   ACE_INLINE
21   NVList_Argument::NVList_Argument (CORBA::NVList_ptr x, bool lazy_eval)
22     : x_ (x)
23     , lazy_evaluation_ (lazy_eval)
24   {
25   }
27   ACE_INLINE
28   CORBA::NVList_ptr
29   NVList_Argument::arg () const
30   {
31     return this->x_;
32   }
36 TAO_END_VERSIONED_NAMESPACE_DECL