summaryrefslogtreecommitdiff
path: root/TAO/tao/varout.i
blob: ea0f0f6d7bf5516ac7d6ecea12216bcce3838e1e (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
//
// $Id$
//

template<class T> ACE_INLINE
TAO_Object_Field_T<T>::TAO_Object_Field_T (void)
  :  ptr_ (0)
{
}

template<class T> ACE_INLINE
TAO_Object_Field_T<T>::TAO_Object_Field_T (T* object)
  :  ptr_ (object)
{
}

template<class T> ACE_INLINE 
TAO_Object_Field_T<T>::TAO_Object_Field_T (const TAO_Object_Field_T<T>& rhs)
  :  ptr_ (T::_duplicate (rhs.ptr_))
{
}

template<class T> ACE_INLINE
TAO_Object_Field_T<T>::~TAO_Object_Field_T (void)
{
  CORBA::release (this->ptr_);
}

template<class T> ACE_INLINE TAO_Object_Field_T<T> &
TAO_Object_Field_T<T>::operator= (T* object)
{
  CORBA::release (this->ptr_);
  this->ptr_ = object;
  return *this;
}

template<class T> ACE_INLINE TAO_Object_Field_T<T> &
TAO_Object_Field_T<T>::operator= (const TAO_Object_Field_T<T> &rhs)
{
  if (this != &rhs)
    {
      CORBA::release (this->ptr_);
      this->ptr_ = T::_duplicate (rhs.ptr_);
    }
  return *this;
}

template<class T> ACE_INLINE T*
TAO_Object_Field_T<T>::ptr (void) const
{
  return this->ptr_;
}

template<class T> ACE_INLINE
TAO_Object_Field_T<T>::operator T* const &() const
{
  return this->ptr_;
}

template<class T> ACE_INLINE
TAO_Object_Field_T<T>::operator T* &()
{
  return this->ptr_;
}

template<class T> ACE_INLINE T*
TAO_Object_Field_T<T>::operator-> (void) const
{
  return this->ptr_;
}

template<class T> ACE_INLINE T*
TAO_Object_Field_T<T>::in (void) const
{
  return this->ptr_;
}

template<class T> ACE_INLINE T* &
TAO_Object_Field_T<T>::inout (void)
{
  return this->ptr_;
}

template<class T> ACE_INLINE T* &
TAO_Object_Field_T<T>::out (void)
{
  CORBA::release (this->ptr_);
  this->ptr_ = 0;
  return this->ptr_;
}

template<class T> ACE_INLINE T*
TAO_Object_Field_T<T>::_retn (void)
{
  // yield ownership of managed obj reference
  T* val = this->ptr_;
  this->ptr_ = 0;
  return val;
}