00001
00002
00003
00004
00005 TAO_BEGIN_VERSIONED_NAMESPACE_DECL
00006
00007 namespace TAO
00008 {
00009 ACE_INLINE
00010 NamedValue_Argument::NamedValue_Argument (CORBA::NamedValue_ptr x)
00011 : x_ (x)
00012 , byte_order_ (0)
00013 {
00014 }
00015
00016 ACE_INLINE int
00017 NamedValue_Argument::byte_order (void) const
00018 {
00019 return this->byte_order_;
00020 }
00021
00022
00023
00024 ACE_INLINE
00025 NVList_Argument::NVList_Argument (CORBA::NVList_ptr x, bool lazy_eval)
00026 : x_ (x)
00027 , lazy_evaluation_ (lazy_eval)
00028 {
00029 }
00030
00031 ACE_INLINE
00032 CORBA::NVList_ptr
00033 NVList_Argument::arg () const
00034 {
00035 return this->x_;
00036 }
00037
00038 }
00039
00040 TAO_END_VERSIONED_NAMESPACE_DECL