/usr/include/tao/Pseudo_VarOut_T.inl is in libtao-dev 6.0.1-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 | // -*- C++ -*-
//
// $Id: Pseudo_VarOut_T.inl 90386 2010-06-02 13:52:08Z vzykov $
#include "tao/CORBA_methods.h"
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
template <typename T>
ACE_INLINE
TAO_Pseudo_Var_T<T>::TAO_Pseudo_Var_T (void)
: ptr_ (T::_nil ())
{}
template <typename T>
ACE_INLINE
TAO_Pseudo_Var_T<T>::TAO_Pseudo_Var_T (typename T::_ptr_type p)
: ptr_ (p)
{}
template <typename T>
ACE_INLINE
TAO_Pseudo_Var_T<T>::TAO_Pseudo_Var_T (const TAO_Pseudo_Var_T<T> & p)
: TAO_Base_var ()
, ptr_ (T::_duplicate (p.ptr ()))
{}
template <typename T>
ACE_INLINE
TAO_Pseudo_Var_T<T>::~TAO_Pseudo_Var_T (void)
{
::CORBA::release (this->ptr_);
}
template <typename T>
ACE_INLINE
TAO_Pseudo_Var_T<T> &
TAO_Pseudo_Var_T<T>::operator= (typename T::_ptr_type p)
{
::CORBA::release (this->ptr_);
this->ptr_ = p;
return *this;
}
template <typename T>
ACE_INLINE
TAO_Pseudo_Var_T<T>::operator typename T::_ptr_type const & () const
{
return this->ptr_;
}
template <typename T>
ACE_INLINE
TAO_Pseudo_Var_T<T>::operator typename T::_ptr_type & ()
{
return this->ptr_;
}
template <typename T>
ACE_INLINE
typename T::_ptr_type
TAO_Pseudo_Var_T<T>::operator-> (void) const
{
return this->ptr_;
}
template <typename T>
ACE_INLINE
typename T::_ptr_type
TAO_Pseudo_Var_T<T>::in (void) const
{
return this->ptr_;
}
template <typename T>
ACE_INLINE
typename T::_ptr_type &
TAO_Pseudo_Var_T<T>::inout (void)
{
return this->ptr_;
}
template <typename T>
ACE_INLINE
typename T::_ptr_type &
TAO_Pseudo_Var_T<T>::out (void)
{
::CORBA::release (this->ptr_);
this->ptr_ = T::_nil ();
return this->ptr_;
}
template <typename T>
ACE_INLINE
typename T::_ptr_type
TAO_Pseudo_Var_T<T>::_retn (void)
{
typename T::_ptr_type val = this->ptr_;
this->ptr_ = T::_nil ();
return val;
}
template <typename T>
ACE_INLINE
typename T::_ptr_type
TAO_Pseudo_Var_T<T>::ptr (void) const
{
return this->ptr_;
}
// *************************************************************
template <typename T>
ACE_INLINE
TAO_Pseudo_Out_T<T>::TAO_Pseudo_Out_T (typename T::_ptr_type & p)
: ptr_ (p)
{
this->ptr_ = T::_nil ();
}
template <typename T>
ACE_INLINE
TAO_Pseudo_Out_T<T>::TAO_Pseudo_Out_T (typename T::_var_type & p)
: ptr_ (p.out ())
{
::CORBA::release (this->ptr_);
this->ptr_ = T::_nil ();
}
template <typename T>
ACE_INLINE
TAO_Pseudo_Out_T<T>::TAO_Pseudo_Out_T (
const TAO_Pseudo_Out_T<T> & p
)
: ptr_ (p.ptr_)
{}
template <typename T>
ACE_INLINE
TAO_Pseudo_Out_T<T> &
TAO_Pseudo_Out_T<T>::operator= (const TAO_Pseudo_Out_T<T> & p)
{
this->ptr_ = p.ptr_;
return *this;
}
template <typename T>
ACE_INLINE
TAO_Pseudo_Out_T<T> &
TAO_Pseudo_Out_T<T>::operator= (typename T::_ptr_type p)
{
this->ptr_ = p;
return *this;
}
template <typename T>
ACE_INLINE
typename T::_ptr_type &
TAO_Pseudo_Out_T<T>::ptr (void)
{
return this->ptr_;
}
template <typename T>
ACE_INLINE
TAO_Pseudo_Out_T<T>::operator typename T::_ptr_type & ()
{
return this->ptr_;
}
template <typename T>
ACE_INLINE
typename T::_ptr_type
TAO_Pseudo_Out_T<T>::operator-> (void)
{
return this->ptr_;
}
TAO_END_VERSIONED_NAMESPACE_DECL
|