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


Public Member Functions | |
| UtcTimeStampField (int field, const UtcTimeStamp &data, bool showMilliseconds=false) | |
| UtcTimeStampField (int field, bool showMilliseconds=false) | |
| void | setValue (UtcTimeStamp &value) |
| UtcTimeStamp | getValue () const throw ( IncorrectDataFormat ) |
| Get the string representation of the Field (i.e.) 55=MSFT[SOH]. | |
| operator UtcTimeStamp () const | |
| bool | operator< (const UtcTimeStampField &rhs) const |
| bool | operator== (const UtcTimeStampField &rhs) const |
| bool | operator!= (const UtcTimeStampField &rhs) const |
Definition at line 332 of file Field.h.
|
||||||||||||||||
|
Definition at line 335 of file Field.h.
00336 : FieldBase( field, UtcTimeStampConvertor::convert( data, showMilliseconds ) ) {} |
|
||||||||||||
|
Definition at line 337 of file Field.h.
00338 : FieldBase( field, UtcTimeStampConvertor::convert( UtcTimeStamp(), showMilliseconds ) ) {} |
|
|
Get the string representation of the Field (i.e.) 55=MSFT[SOH].
Reimplemented from FIX::FieldBase. Definition at line 342 of file Field.h. Referenced by operator!=(), operator<(), and operator==().
|
|
|
Definition at line 347 of file Field.h.
00348 { return getValue(); }
|
|
|
Definition at line 354 of file Field.h. References getValue().
00355 { return getValue() != rhs.getValue(); }
|
|
|
Definition at line 350 of file Field.h. References getValue().
00351 { return getValue() < rhs.getValue(); }
|
|
|
Definition at line 352 of file Field.h. References getValue().
00353 { return getValue() == rhs.getValue(); }
|
|
|
Definition at line 340 of file Field.h.
00341 { setString( UtcTimeStampConvertor::convert( value ) ); }
|
1.3.6-20040222 written by Dimitri van Heesch,
© 1997-2001