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

FIX::UtcDateField Class Reference

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

#include <Field.h>

Inheritance diagram for FIX::UtcDateField:

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

Collaboration graph
[legend]
List of all members.

Public Member Functions

 UtcDateField (int field, const UtcDate &data)
 UtcDateField (int field)
void setValue (UtcDate &value)
UtcDate getValue () const throw ( IncorrectDataFormat )
 Get the string representation of the Field (i.e.) 55=MSFT[SOH].

 operator UtcDate () const
bool operator< (const UtcDateField &rhs) const
bool operator== (const UtcDateField &rhs) const
bool operator!= (const UtcDateField &rhs) const

Detailed Description

Field that contains a UTC date value.

Definition at line 359 of file Field.h.


Constructor & Destructor Documentation

FIX::UtcDateField::UtcDateField int  field,
const UtcDate data
[inline, explicit]
 

Definition at line 362 of file Field.h.

00363 : FieldBase( field, UtcDateConvertor::convert( data ) ) {}

FIX::UtcDateField::UtcDateField int  field  )  [inline]
 

Definition at line 364 of file Field.h.

00365 : FieldBase( field, UtcDateConvertor::convert( UtcDate() ) ) {}


Member Function Documentation

UtcDate FIX::UtcDateField::getValue  )  const throw ( IncorrectDataFormat ) [inline]
 

Get the string representation of the Field (i.e.) 55=MSFT[SOH].

Reimplemented from FIX::FieldBase.

Definition at line 369 of file Field.h.

Referenced by operator!=(), operator<(), and operator==().

00370     { try
00371       { return UtcDateConvertor::convert( getString() ); }
00372       catch( FieldConvertError& )
00373       { throw IncorrectDataFormat( getField() ); } }

FIX::UtcDateField::operator UtcDate  )  const [inline]
 

Definition at line 374 of file Field.h.

00375     { return getValue(); }

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

Definition at line 381 of file Field.h.

References getValue().

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

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

Definition at line 377 of file Field.h.

References getValue().

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

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

Definition at line 379 of file Field.h.

References getValue().

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

void FIX::UtcDateField::setValue UtcDate value  )  [inline]
 

Definition at line 367 of file Field.h.

00368     { setString( UtcDateConvertor::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