Any.inl File Reference

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

ACE_INLINE void operator<<= (CORBA::Any_var &lhs, CORBA::Short rhs)
ACE_INLINE void operator<<= (CORBA::Any_var &lhs, CORBA::UShort rhs)
ACE_INLINE void operator<<= (CORBA::Any_var &lhs, CORBA::Long rhs)
ACE_INLINE void operator<<= (CORBA::Any_var &lhs, CORBA::ULong rhs)
ACE_INLINE void operator<<= (CORBA::Any_var &lhs, CORBA::LongLong rhs)
ACE_INLINE void operator<<= (CORBA::Any_var &lhs, CORBA::ULongLong rhs)
ACE_INLINE void operator<<= (CORBA::Any_var &lhs, CORBA::Float rhs)
ACE_INLINE void operator<<= (CORBA::Any_var &lhs, CORBA::Double rhs)
ACE_INLINE void operator<<= (CORBA::Any_var &lhs, const CORBA::Any &rhs)
ACE_INLINE void operator<<= (CORBA::Any_var &lhs, const char *rhs)
ACE_INLINE void operator<<= (CORBA::Any_var &lhs, CORBA::TypeCode_ptr rhs)
ACE_INLINE void operator<<= (CORBA::Any_var &lhs, const CORBA::Object_ptr rhs)
ACE_INLINE void operator<<= (CORBA::Any_var &lhs, ACE_OutputCDR::from_boolean rhs)
ACE_INLINE void operator<<= (CORBA::Any_var &lhs, CORBA::Any::from_char rhs)
ACE_INLINE void operator<<= (CORBA::Any_var &lhs, CORBA::Any::from_wchar rhs)
ACE_INLINE void operator<<= (CORBA::Any_var &lhs, CORBA::Any::from_octet rhs)
ACE_INLINE void operator<<= (CORBA::Any_var &lhs, CORBA::Any::from_string rhs)
ACE_INLINE void operator<<= (CORBA::Any_var &lhs, CORBA::Any::from_wstring rhs)
ACE_INLINE CORBA::Boolean operator>>= (const CORBA::Any_var &lhs, CORBA::Short &rhs)
ACE_INLINE CORBA::Boolean operator>>= (const CORBA::Any_var &lhs, CORBA::UShort &rhs)
ACE_INLINE CORBA::Boolean operator>>= (const CORBA::Any_var &lhs, CORBA::Long &rhs)
ACE_INLINE CORBA::Boolean operator>>= (const CORBA::Any_var &lhs, CORBA::ULong &rhs)
ACE_INLINE CORBA::Boolean operator>>= (const CORBA::Any_var &lhs, CORBA::LongLong &rhs)
ACE_INLINE CORBA::Boolean operator>>= (const CORBA::Any_var &lhs, CORBA::ULongLong &rhs)
ACE_INLINE CORBA::Boolean operator>>= (const CORBA::Any_var &lhs, CORBA::Float &rhs)
ACE_INLINE CORBA::Boolean operator>>= (const CORBA::Any_var &lhs, CORBA::Double &rhs)
ACE_INLINE CORBA::Boolean operator>>= (const CORBA::Any_var &lhs, const CORBA::Any *&rhs)
ACE_INLINE CORBA::Boolean operator>>= (const CORBA::Any_var &lhs, CORBA::TypeCode_ptr &rhs)
ACE_INLINE CORBA::Boolean operator>>= (const CORBA::Any_var &lhs, const char *&rhs)
ACE_INLINE CORBA::Boolean operator>>= (const CORBA::Any_var &lhs, const CORBA::WChar *&rhs)
ACE_INLINE CORBA::Boolean operator>>= (const CORBA::Any_var &lhs, CORBA::Any::to_boolean rhs)
ACE_INLINE CORBA::Boolean operator>>= (const CORBA::Any_var &lhs, CORBA::Any::to_octet rhs)
ACE_INLINE CORBA::Boolean operator>>= (const CORBA::Any_var &lhs, CORBA::Any::to_char rhs)
ACE_INLINE CORBA::Boolean operator>>= (const CORBA::Any_var &lhs, CORBA::Any::to_wchar rhs)
ACE_INLINE CORBA::Boolean operator>>= (const CORBA::Any_var &lhs, CORBA::Any::to_string rhs)
ACE_INLINE CORBA::Boolean operator>>= (const CORBA::Any_var &lhs, CORBA::Any::to_wstring rhs)
ACE_INLINE CORBA::Boolean operator>>= (const CORBA::Any_var &lhs, CORBA::Any::to_object rhs)


Function Documentation

ACE_INLINE void operator<<= ( CORBA::Any_var lhs,
CORBA::Any::from_wstring  rhs 
)

Definition at line 194 of file Any.inl.

00195 {
00196   lhs.inout () <<= rhs;
00197 }

ACE_INLINE void operator<<= ( CORBA::Any_var lhs,
CORBA::Any::from_string  rhs 
)

Definition at line 188 of file Any.inl.

00189 {
00190   lhs.inout () <<= rhs;
00191 }

ACE_INLINE void operator<<= ( CORBA::Any_var lhs,
CORBA::Any::from_octet  rhs 
)

Definition at line 182 of file Any.inl.

00183 {
00184   lhs.inout () <<= rhs;
00185 }

ACE_INLINE void operator<<= ( CORBA::Any_var lhs,
CORBA::Any::from_wchar  rhs 
)

Definition at line 176 of file Any.inl.

00177 {
00178   lhs.inout () <<= rhs;
00179 }

ACE_INLINE void operator<<= ( CORBA::Any_var lhs,
CORBA::Any::from_char  rhs 
)

Definition at line 170 of file Any.inl.

00171 {
00172   lhs.inout () <<= rhs;
00173 }

ACE_INLINE void operator<<= ( CORBA::Any_var lhs,
ACE_OutputCDR::from_boolean  rhs 
)

Definition at line 164 of file Any.inl.

00165 {
00166   lhs.inout () <<= rhs;
00167 }

ACE_INLINE void operator<<= ( CORBA::Any_var lhs,
const CORBA::Object_ptr  rhs 
)

Definition at line 158 of file Any.inl.

00159 {
00160   lhs.inout () <<= rhs;
00161 }

ACE_INLINE void operator<<= ( CORBA::Any_var lhs,
CORBA::TypeCode_ptr  rhs 
)

Definition at line 152 of file Any.inl.

00153 {
00154   lhs.inout () <<= rhs;
00155 }

ACE_INLINE void operator<<= ( CORBA::Any_var lhs,
const char *  rhs 
)

Definition at line 146 of file Any.inl.

00147 {
00148   lhs.inout () <<= rhs;
00149 }

ACE_INLINE void operator<<= ( CORBA::Any_var lhs,
const CORBA::Any rhs 
)

Definition at line 140 of file Any.inl.

00141 {
00142   lhs.inout () <<= rhs;
00143 }

ACE_INLINE void operator<<= ( CORBA::Any_var lhs,
CORBA::Double  rhs 
)

Definition at line 134 of file Any.inl.

00135 {
00136   lhs.inout () <<= rhs;
00137 }

ACE_INLINE void operator<<= ( CORBA::Any_var lhs,
CORBA::Float  rhs 
)

Definition at line 128 of file Any.inl.

00129 {
00130   lhs.inout () <<= rhs;
00131 }

ACE_INLINE void operator<<= ( CORBA::Any_var lhs,
CORBA::ULongLong  rhs 
)

Definition at line 122 of file Any.inl.

00123 {
00124   lhs.inout () <<= rhs;
00125 }

ACE_INLINE void operator<<= ( CORBA::Any_var lhs,
CORBA::LongLong  rhs 
)

Definition at line 116 of file Any.inl.

00117 {
00118   lhs.inout () <<= rhs;
00119 }

ACE_INLINE void operator<<= ( CORBA::Any_var lhs,
CORBA::ULong  rhs 
)

Definition at line 110 of file Any.inl.

00111 {
00112   lhs.inout () <<= rhs;
00113 }

ACE_INLINE void operator<<= ( CORBA::Any_var lhs,
CORBA::Long  rhs 
)

Definition at line 104 of file Any.inl.

00105 {
00106   lhs.inout () <<= rhs;
00107 }

ACE_INLINE void operator<<= ( CORBA::Any_var lhs,
CORBA::UShort  rhs 
)

Definition at line 98 of file Any.inl.

00099 {
00100   lhs.inout () <<= rhs;
00101 }

ACE_INLINE void operator<<= ( CORBA::Any_var ,
CORBA::Short   
)

Copying versions of insertion operators for basic types must also be defined for CORBA::Any_var.

Definition at line 92 of file Any.inl.

00093 {
00094   lhs.inout () <<= rhs;
00095 }

ACE_INLINE CORBA::Boolean operator>>= ( const CORBA::Any_var lhs,
CORBA::Any::to_object  rhs 
)

Definition at line 312 of file Any.inl.

00313 {
00314   return lhs.in () >>= rhs;
00315 }

ACE_INLINE CORBA::Boolean operator>>= ( const CORBA::Any_var lhs,
CORBA::Any::to_wstring  rhs 
)

Definition at line 306 of file Any.inl.

00307 {
00308   return lhs.in () >>= rhs;
00309 }

ACE_INLINE CORBA::Boolean operator>>= ( const CORBA::Any_var lhs,
CORBA::Any::to_string  rhs 
)

Definition at line 300 of file Any.inl.

00301 {
00302   return lhs.in () >>= rhs;
00303 }

ACE_INLINE CORBA::Boolean operator>>= ( const CORBA::Any_var lhs,
CORBA::Any::to_wchar  rhs 
)

Definition at line 294 of file Any.inl.

00295 {
00296   return lhs.in () >>= rhs;
00297 }

ACE_INLINE CORBA::Boolean operator>>= ( const CORBA::Any_var lhs,
CORBA::Any::to_char  rhs 
)

Definition at line 288 of file Any.inl.

00289 {
00290   return lhs.in () >>= rhs;
00291 }

ACE_INLINE CORBA::Boolean operator>>= ( const CORBA::Any_var lhs,
CORBA::Any::to_octet  rhs 
)

Definition at line 282 of file Any.inl.

00283 {
00284   return lhs.in () >>= rhs;
00285 }

ACE_INLINE CORBA::Boolean operator>>= ( const CORBA::Any_var lhs,
CORBA::Any::to_boolean  rhs 
)

Definition at line 276 of file Any.inl.

00277 {
00278   return lhs.in () >>= rhs;
00279 }

ACE_INLINE CORBA::Boolean operator>>= ( const CORBA::Any_var lhs,
const CORBA::WChar *&  rhs 
)

Definition at line 270 of file Any.inl.

00271 {
00272   return lhs.in () >>= rhs;
00273 }

ACE_INLINE CORBA::Boolean operator>>= ( const CORBA::Any_var lhs,
const char *&  rhs 
)

Definition at line 264 of file Any.inl.

00265 {
00266   return lhs.in () >>= rhs;
00267 }

ACE_INLINE CORBA::Boolean operator>>= ( const CORBA::Any_var lhs,
CORBA::TypeCode_ptr rhs 
)

Definition at line 258 of file Any.inl.

00259 {
00260   return lhs.in () >>= rhs;
00261 }

ACE_INLINE CORBA::Boolean operator>>= ( const CORBA::Any_var lhs,
const CORBA::Any *&  rhs 
)

Definition at line 252 of file Any.inl.

00253 {
00254   return lhs.in () >>= rhs;
00255 }

ACE_INLINE CORBA::Boolean operator>>= ( const CORBA::Any_var lhs,
CORBA::Double rhs 
)

Definition at line 246 of file Any.inl.

00247 {
00248   return lhs.in () >>= rhs;
00249 }

ACE_INLINE CORBA::Boolean operator>>= ( const CORBA::Any_var lhs,
CORBA::Float rhs 
)

Definition at line 240 of file Any.inl.

00241 {
00242   return lhs.in () >>= rhs;
00243 }

ACE_INLINE CORBA::Boolean operator>>= ( const CORBA::Any_var lhs,
CORBA::ULongLong rhs 
)

Definition at line 234 of file Any.inl.

00235 {
00236   return lhs.in () >>= rhs;
00237 }

ACE_INLINE CORBA::Boolean operator>>= ( const CORBA::Any_var lhs,
CORBA::LongLong rhs 
)

Definition at line 228 of file Any.inl.

00229 {
00230   return lhs.in () >>= rhs;
00231 }

ACE_INLINE CORBA::Boolean operator>>= ( const CORBA::Any_var lhs,
CORBA::ULong rhs 
)

Definition at line 222 of file Any.inl.

00223 {
00224   return lhs.in () >>= rhs;
00225 }

ACE_INLINE CORBA::Boolean operator>>= ( const CORBA::Any_var lhs,
CORBA::Long rhs 
)

Definition at line 216 of file Any.inl.

00217 {
00218   return lhs.in () >>= rhs;
00219 }

ACE_INLINE CORBA::Boolean operator>>= ( const CORBA::Any_var lhs,
CORBA::UShort rhs 
)

Definition at line 210 of file Any.inl.

00211 {
00212   return lhs.in () >>= rhs;
00213 }

ACE_INLINE CORBA::Boolean operator>>= ( const CORBA::Any_var ,
CORBA::Short  
)

These are not required by the spec, but will make users of other ORBs that are used to them more comfortable.

Definition at line 204 of file Any.inl.

00205 {
00206   return lhs.in () >>= rhs;
00207 }


Generated on Tue Feb 2 17:40:13 2010 for TAO_AnyTypeCode by  doxygen 1.4.7