Public Member Functions
FIX::LocalTimeStamp Class Reference

Date and Time represented in local time. More...

#include <FieldTypes.h>

Inheritance diagram for FIX::LocalTimeStamp:
Inheritance graph
[legend]
Collaboration diagram for FIX::LocalTimeStamp:
Collaboration graph
[legend]

List of all members.

Public Member Functions

 LocalTimeStamp ()
 Defaults to the current date and time.
 LocalTimeStamp (int hour, int minute, int second, int millisecond=0)
 Defaults to the current date.
 LocalTimeStamp (int hour, int minute, int second, int date, int month, int year)
 LocalTimeStamp (int hour, int minute, int second, int millisecond, int date, int month, int year)
 LocalTimeStamp (time_t time, int millisecond=0)
 LocalTimeStamp (const tm *time, int millisecond=0)
void setCurrent ()

Detailed Description

Date and Time represented in local time.

Definition at line 434 of file FieldTypes.h.


Constructor & Destructor Documentation

Defaults to the current date and time.

Definition at line 438 of file FieldTypes.h.

FIX::LocalTimeStamp::LocalTimeStamp ( int  hour,
int  minute,
int  second,
int  millisecond = 0 
) [inline]

Defaults to the current date.

Definition at line 442 of file FieldTypes.h.

References FIX::DateTime::setHMS().

  : DateTime( DateTime::nowLocal() )
  {
    setHMS( hour, minute, second, millisecond );
  }
FIX::LocalTimeStamp::LocalTimeStamp ( int  hour,
int  minute,
int  second,
int  date,
int  month,
int  year 
) [inline]

Definition at line 448 of file FieldTypes.h.

  : DateTime( year, month, date, hour, minute, second, 0 ) {}
FIX::LocalTimeStamp::LocalTimeStamp ( int  hour,
int  minute,
int  second,
int  millisecond,
int  date,
int  month,
int  year 
) [inline]

Definition at line 452 of file FieldTypes.h.

  : DateTime( year, month, date, hour, minute, second, millisecond ) {}
FIX::LocalTimeStamp::LocalTimeStamp ( time_t  time,
int  millisecond = 0 
) [inline, explicit]

Definition at line 456 of file FieldTypes.h.

  : DateTime( fromLocalTimeT (time, millisecond) ) {}
FIX::LocalTimeStamp::LocalTimeStamp ( const tm *  time,
int  millisecond = 0 
) [inline]

Definition at line 459 of file FieldTypes.h.

  : DateTime( fromTm (*time, millisecond) ) {}

Member Function Documentation

Definition at line 462 of file FieldTypes.h.

References FIX::DateTime::nowLocal().

  {
    set( DateTime::nowLocal() );
  }

The documentation for this class was generated from the following file:

Generated on Mon Sep 15 2014 01:23:57 for QuickFIX by doxygen 1.7.6.1 written by Dimitri van Heesch, © 1997-2001