#include <TAO_TIO.h>
Collaboration diagram for TAO_TIO:
Public Member Functions | |
TAO_TIO (TimeBase::TimeT lower, TimeBase::TimeT upper) | |
Constructor. | |
~TAO_TIO (void) | |
Destructor. | |
Private Attributes | |
TimeBase::IntervalT | attr_time_interval |
This is the get method for the attribute time interval. |
The TIO represents a time interval and has operations to compare itself with a UTO or another TIO. It also has an operation to create a UTO from the value of it's time interval.
Definition at line 37 of file TAO_TIO.h.
|
Constructor.
Definition at line 8 of file TAO_TIO.cpp. References attr_time_interval, TimeBase::IntervalT::lower_bound, and TimeBase::IntervalT::upper_bound.
00010 { 00011 this->attr_time_interval.lower_bound = lower; 00012 this->attr_time_interval.upper_bound = upper; 00013 } |
|
Destructor.
Definition at line 16 of file TAO_TIO.cpp.
00017 { 00018 } |
|
This is the get method for the attribute time interval. This attribute returns an IntervalT structure with the values of its fields filled in with the corresponding values from the TIO. Definition at line 83 of file TAO_TIO.h. Referenced by TAO_TIO(). |