![]() |
![]() |
|
Index
Source Files
Annotated Class List
Alphabetical Class List
Class Hierarchy
Graphical Class Hierarchy
|
||
![]() |
![]() |
#include <Field.h>
Inheritance diagram for FIX::UtcTimeOnlyField:


Public Member Functions | |
| UtcTimeOnlyField (int field, const UtcTimeOnly &data, bool showMilliseconds=false) | |
| UtcTimeOnlyField (int field, bool showMilliseconds=false) | |
| void | setValue (UtcTimeOnly &value) |
| UtcTimeOnly | getValue () const throw ( IncorrectDataFormat ) |
| Get the string representation of the Field (i.e.) 55=MSFT[SOH]. | |
| operator UtcTimeOnly () const | |
| bool | operator< (const UtcTimeOnlyField &rhs) const |
| bool | operator== (const UtcTimeOnlyField &rhs) const |
| bool | operator!= (const UtcTimeOnlyField &rhs) const |
Definition at line 386 of file Field.h.
|
||||||||||||||||
|
Definition at line 389 of file Field.h.
00390 : FieldBase( field, UtcTimeOnlyConvertor::convert( data, showMilliseconds ) ) {} |
|
||||||||||||
|
Definition at line 391 of file Field.h.
00392 : FieldBase( field, UtcTimeOnlyConvertor::convert( UtcTimeOnly(), showMilliseconds ) ) {} |
|
|
Get the string representation of the Field (i.e.) 55=MSFT[SOH].
Reimplemented from FIX::FieldBase. Definition at line 396 of file Field.h. Referenced by operator!=(), operator<(), and operator==().
|
|
|
Definition at line 401 of file Field.h.
00402 { return getValue(); }
|
|
|
Definition at line 408 of file Field.h. References getValue().
00409 { return getValue() != rhs.getValue(); }
|
|
|
Definition at line 404 of file Field.h. References getValue().
00405 { return getValue() < rhs.getValue(); }
|
|
|
Definition at line 406 of file Field.h. References getValue().
00407 { return getValue() == rhs.getValue(); }
|
|
|
Definition at line 394 of file Field.h.
00395 { setString( UtcTimeOnlyConvertor::convert( value ) ); }
|
1.3.6-20040222 written by Dimitri van Heesch,
© 1997-2001