#include "ace/config-all.h"#include "tao/TAO_Export.h"#include "tao/ORB.h"#include "tao/Environment.h"#include "tao/VarOut_T.h"Include dependency graph for TimeBaseC.h:

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

Go to the source code of this file.
| Namespaces | |
| namespace | TimeBase | 
| namespace | TAO | 
| Classes | |
| struct | UtcT | 
| A timestamp in UTC time.  More... | |
| struct | IntervalT | 
| An UTC time interval.  More... | |
| Defines | |
| #define | TAO_EXPORT_MACRO TAO_Export | 
| Functions | |
| TAO_Export CORBA::Boolean | operator<< (TAO_OutputCDR &, const TimeBase::UtcT &) | 
| TAO_Export CORBA::Boolean | operator>> (TAO_InputCDR &, TimeBase::UtcT &) | 
| TAO_Export CORBA::Boolean | operator<< (TAO_OutputCDR &, const TimeBase::IntervalT &) | 
| TAO_Export CORBA::Boolean | operator>> (TAO_InputCDR &, TimeBase::IntervalT &) | 
| 
 | 
| 
 Definition at line 51 of file TimeBaseC.h. | 
| 
 | ||||||||||||
| 
 Definition at line 106 of file TimeBaseC.cpp. References TimeBase::IntervalT::lower_bound, and TimeBase::IntervalT::upper_bound. 
 00110 {
00111   return
00112     (strm << _tao_aggregate.lower_bound) &&
00113     (strm << _tao_aggregate.upper_bound);
00114 }
 | 
| 
 | ||||||||||||
| 
 Definition at line 79 of file TimeBaseC.cpp. References TimeBase::UtcT::inacchi, TimeBase::UtcT::inacclo, TimeBase::UtcT::tdf, and TimeBase::UtcT::time. 
 00083 {
00084   return
00085     (strm << _tao_aggregate.time) &&
00086     (strm << _tao_aggregate.inacclo) &&
00087     (strm << _tao_aggregate.inacchi) &&
00088     (strm << _tao_aggregate.tdf);
00089 }
 | 
| 
 | ||||||||||||
| 
 Definition at line 116 of file TimeBaseC.cpp. References TimeBase::IntervalT::lower_bound, and TimeBase::IntervalT::upper_bound. 
 00120 {
00121   return
00122     (strm >> _tao_aggregate.lower_bound) &&
00123     (strm >> _tao_aggregate.upper_bound);
00124 }
 | 
| 
 | ||||||||||||
| 
 Definition at line 91 of file TimeBaseC.cpp. References TimeBase::UtcT::inacchi, TimeBase::UtcT::inacclo, TimeBase::UtcT::tdf, and TimeBase::UtcT::time. 
 00095 {
00096   return
00097     (strm >> _tao_aggregate.time) &&
00098     (strm >> _tao_aggregate.inacclo) &&
00099     (strm >> _tao_aggregate.inacchi) &&
00100     (strm >> _tao_aggregate.tdf);
00101 }
 | 
 1.3.6
 
1.3.6