/usr/include/tao/Pseudo_VarOut_T.cpp 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 | // $Id: Pseudo_VarOut_T.cpp 72136 2006-04-19 09:10:19Z jwillemsen $
#ifndef TAO_PSEUDO_VAROUT_T_CPP
#define TAO_PSEUDO_VAROUT_T_CPP
#include "tao/Pseudo_VarOut_T.h"
#if !defined (__ACE_INLINE__)
#include "tao/Pseudo_VarOut_T.inl"
#endif /* __ACE_INLINE__ */
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
template <typename T>
TAO_Pseudo_Var_T<T> &
TAO_Pseudo_Var_T<T>::operator= (const TAO_Pseudo_Var_T<T> & p)
{
if (this != &p)
{
::CORBA::release (this->ptr_);
this->ptr_ = T::_duplicate (p.ptr ());
}
return *this;
}
TAO_END_VERSIONED_NAMESPACE_DECL
#endif /* TAO_PSEUDO_VAROUT_T_CPP */
|