ACE_CDR::LongDouble Struct Reference
#include <CDR_Base.h>
List of all members.
Detailed Description
Definition at line 305 of file CDR_Base.h.
Member Typedef Documentation
Member Function Documentation
| ACE_CDR::LongDouble::operator NativeImpl |
( |
|
) |
const |
| bool ACE_CDR::LongDouble::operator!= |
( |
const LongDouble & |
rhs |
) |
const |
Definition at line 330 of file CDR_Base.h.
00330 {
00331 return this->assign (static_cast<NativeImpl> (*this) * rhs);
00332 }
| LongDouble ACE_CDR::LongDouble::operator++ |
( |
int |
|
) |
[inline] |
Definition at line 348 of file CDR_Base.h.
00348 {
00349 LongDouble ldv = *this;
00350 this->assign (static_cast<NativeImpl> (*this) + 1);
00351 return ldv;
00352 }
| LongDouble& ACE_CDR::LongDouble::operator++ |
( |
void |
|
) |
[inline] |
Definition at line 342 of file CDR_Base.h.
00342 {
00343 return this->assign (static_cast<NativeImpl> (*this) + 1);
00344 }
Definition at line 336 of file CDR_Base.h.
00336 {
00337 return this->assign (static_cast<NativeImpl> (*this) + rhs);
00338 }
| LongDouble ACE_CDR::LongDouble::operator-- |
( |
int |
|
) |
[inline] |
Definition at line 353 of file CDR_Base.h.
00353 {
00354 LongDouble ldv = *this;
00355 this->assign (static_cast<NativeImpl> (*this) - 1);
00356 return ldv;
00357 }
| LongDouble& ACE_CDR::LongDouble::operator-- |
( |
void |
|
) |
[inline] |
Definition at line 345 of file CDR_Base.h.
00345 {
00346 return this->assign (static_cast<NativeImpl> (*this) - 1);
00347 }
Definition at line 339 of file CDR_Base.h.
00339 {
00340 return this->assign (static_cast<NativeImpl> (*this) - rhs);
00341 }
Definition at line 333 of file CDR_Base.h.
00333 {
00334 return this->assign (static_cast<NativeImpl> (*this) / rhs);
00335 }
| bool ACE_CDR::LongDouble::operator== |
( |
const LongDouble & |
rhs |
) |
const |
Member Data Documentation
The documentation for this struct was generated from the following file: