Index  Source Files  Annotated Class List  Alphabetical Class List  Class Hierarchy  Graphical Class Hierarchy   
 

FIX::UtcTimeOnlyField Class Reference

Field that contains a UTC time value. More...

#include <Field.h>

Inheritance diagram for FIX::UtcTimeOnlyField:

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

Collaboration graph
[legend]
List of all members.

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

Detailed Description

Field that contains a UTC time value.

Definition at line 386 of file Field.h.


Constructor & Destructor Documentation

FIX::UtcTimeOnlyField::UtcTimeOnlyField int  field,
const UtcTimeOnly data,
bool  showMilliseconds = false
[inline, explicit]
 

Definition at line 389 of file Field.h.

00390 : FieldBase( field, UtcTimeOnlyConvertor::convert( data, showMilliseconds ) ) {}

FIX::UtcTimeOnlyField::UtcTimeOnlyField int  field,
bool  showMilliseconds = false
[inline]
 

Definition at line 391 of file Field.h.

00392 : FieldBase( field, UtcTimeOnlyConvertor::convert( UtcTimeOnly(), showMilliseconds ) ) {}


Member Function Documentation

UtcTimeOnly FIX::UtcTimeOnlyField::getValue  )  const throw ( IncorrectDataFormat ) [inline]
 

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==().

00397     { try
00398       { return UtcTimeOnlyConvertor::convert( getString() ); }
00399       catch( FieldConvertError& )
00400       { throw IncorrectDataFormat( getField() ); } }

FIX::UtcTimeOnlyField::operator UtcTimeOnly  )  const [inline]
 

Definition at line 401 of file Field.h.

00402     { return getValue(); }

bool FIX::UtcTimeOnlyField::operator!= const UtcTimeOnlyField rhs  )  const [inline]
 

Definition at line 408 of file Field.h.

References getValue().

00409     { return getValue() != rhs.getValue(); }

bool FIX::UtcTimeOnlyField::operator< const UtcTimeOnlyField rhs  )  const [inline]
 

Definition at line 404 of file Field.h.

References getValue().

00405     { return getValue() < rhs.getValue(); }

bool FIX::UtcTimeOnlyField::operator== const UtcTimeOnlyField rhs  )  const [inline]
 

Definition at line 406 of file Field.h.

References getValue().

00407     { return getValue() == rhs.getValue(); }

void FIX::UtcTimeOnlyField::setValue UtcTimeOnly value  )  [inline]
 

Definition at line 394 of file Field.h.

00395     { setString( UtcTimeOnlyConvertor::convert( value ) ); }


The documentation for this class was generated from the following file:
Generated on Mon Jul 24 19:36:42 2006 for QuickFIX by doxygen 1.3.6-20040222 written by Dimitri van Heesch, © 1997-2001