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


Public Member Functions | |
| UtcTimeStamp () | |
| Defaults to the current date and time. | |
| UtcTimeStamp (int hour, int minute, int second, int millisecond=0) | |
| Defaults to the current date. | |
| UtcTimeStamp (int hour, int minute, int second, int date, int month, int year) | |
| UtcTimeStamp (int hour, int minute, int second, int millisecond, int date, int month, int year) | |
| UtcTimeStamp (time_t time, int millisecond=0) | |
| UtcTimeStamp (const tm *time, int millisecond=0) | |
| void | setCurrent () |
Definition at line 391 of file FieldTypes.h.
|
|
Defaults to the current date and time.
Definition at line 395 of file FieldTypes.h.
00396 : DateTime( DateTime::now() ) {} |
|
||||||||||||||||||||
|
Defaults to the current date.
Definition at line 399 of file FieldTypes.h. References FIX::DateTime::setHMS().
|
|
||||||||||||||||||||||||||||
|
Definition at line 406 of file FieldTypes.h.
00408 : DateTime( year, month, date, hour, minute, second, 0 ) {} |
|
||||||||||||||||||||||||||||||||
|
Definition at line 410 of file FieldTypes.h.
00412 : DateTime( year, month, date, hour, minute, second, millisecond ) {} |
|
||||||||||||
|
Definition at line 414 of file FieldTypes.h.
00415 : DateTime( fromTimeT (time, millisecond) ) {} |
|
||||||||||||
|
Definition at line 417 of file FieldTypes.h.
00418 : DateTime( fromTm (*time, millisecond) ) {} |
|
|
Definition at line 420 of file FieldTypes.h. References FIX::DateTime::set(). Referenced by FIX::ScreenLog::onEvent(), FIX::ScreenLog::onIncoming(), FIX::ScreenLog::onOutgoing(), and FIX::MemoryStore::reset().
00421 {
00422 set( DateTime::now() );
00423 }
|
1.3.6-20040222 written by Dimitri van Heesch,
© 1997-2001