summaryrefslogtreecommitdiff
path: root/TAO/tao/DynamicInterface/DII_Arguments.inl
blob: c8a05b4183a9252f7b31e71ca8f0396baa6c918b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// -*- C++ -*-
//
// $Id$

TAO_BEGIN_VERSIONED_NAMESPACE_DECL

namespace TAO
{
  ACE_INLINE
  NamedValue_Argument::NamedValue_Argument (CORBA::NamedValue_ptr x)
    : x_ (x)
    , byte_order_ (0)
  {
  }

  ACE_INLINE int
  NamedValue_Argument::byte_order (void) const
  {
    return this->byte_order_;
  }

  // ===================================================================

  ACE_INLINE
  NVList_Argument::NVList_Argument (CORBA::NVList_ptr x, bool lazy_eval)
    : x_ (x)
      , lazy_evaluation_ (lazy_eval)
  {
  }

  ACE_INLINE
  CORBA::NVList_ptr
  NVList_Argument::arg () const
  {
    return this->x_;
  }

}

TAO_END_VERSIONED_NAMESPACE_DECL