Parametrized implementation of _var class for structs, unions, and exceptions with members of fixed size. More...
#include <VarOut_T.h>
Public Types | |
typedef T & | _out_type |
typedef T | _retn_type |
Public Member Functions | |
TAO_Fixed_Var_T (void) | |
TAO_Fixed_Var_T (T *) | |
TAO_Fixed_Var_T (const TAO_Fixed_Var_T< T > &) | |
TAO_Fixed_Var_T (const T &) | |
TAO_Fixed_Var_T & | operator= (T *) |
TAO_Fixed_Var_T & | operator= (const TAO_Fixed_Var_T< T > &) |
TAO_Fixed_Var_T & | operator= (const T &) |
operator const T & () const | |
operator T & () | |
operator T & () const | |
_out_type | out (void) |
_retn_type | _retn (void) |
Parametrized implementation of _var class for structs, unions, and exceptions with members of fixed size.
Definition at line 70 of file VarOut_T.h.
typedef T& TAO_Fixed_Var_T< T >::_out_type |
Definition at line 90 of file VarOut_T.h.
typedef T TAO_Fixed_Var_T< T >::_retn_type |
Definition at line 91 of file VarOut_T.h.
TAO_Fixed_Var_T< T >::TAO_Fixed_Var_T | ( | void | ) |
Definition at line 69 of file VarOut_T.inl.
{}
TAO_Fixed_Var_T< T >::TAO_Fixed_Var_T | ( | T * | p | ) |
Definition at line 74 of file VarOut_T.inl.
: TAO_Var_Base_T<T> (p) {}
TAO_Fixed_Var_T< T >::TAO_Fixed_Var_T | ( | const TAO_Fixed_Var_T< T > & | p | ) |
Definition at line 80 of file VarOut_T.inl.
: TAO_Var_Base_T<T> (p) {}
TAO_Fixed_Var_T< T >::TAO_Fixed_Var_T | ( | const T & | p | ) |
Definition at line 87 of file VarOut_T.inl.
T TAO_Fixed_Var_T< T >::_retn | ( | void | ) |
Definition at line 148 of file VarOut_T.inl.
{ return *this->ptr_; }
TAO_Fixed_Var_T< T >::operator const T & | ( | ) | const |
Definition at line 105 of file VarOut_T.inl.
{ return *this->ptr_; }
TAO_Fixed_Var_T< T >::operator T & | ( | ) |
Definition at line 112 of file VarOut_T.inl.
TAO_Fixed_Var_T< T >::operator T & | ( | ) | const |
Definition at line 125 of file VarOut_T.inl.
{ return *this->ptr_; }
TAO_Fixed_Var_T< T > & TAO_Fixed_Var_T< T >::operator= | ( | T * | p | ) |
Definition at line 96 of file VarOut_T.inl.
TAO_Fixed_Var_T< T > & TAO_Fixed_Var_T< T >::operator= | ( | const TAO_Fixed_Var_T< T > & | p | ) |
Definition at line 24 of file VarOut_T.cpp.
{ // Strongly exception safe assignment using copy and non-throwing // swap technique. TAO_Fixed_Var_T<T> tmp (p); T * old_ptr = this->ptr_; this->ptr_ = tmp.ptr_; tmp.ptr_ = old_ptr; return *this; }
TAO_Fixed_Var_T< T > & TAO_Fixed_Var_T< T >::operator= | ( | const T & | p | ) |
Definition at line 40 of file VarOut_T.cpp.
{ // Strongly exception safe assignment using copy and non-throwing // swap technique. TAO_Fixed_Var_T<T> tmp (p); T * old_ptr = this->ptr_; this->ptr_ = tmp.ptr_; tmp.ptr_ = old_ptr; return *this; }
T & TAO_Fixed_Var_T< T >::out | ( | void | ) |
Definition at line 134 of file VarOut_T.inl.