Public Member Functions
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 (const UtcDate &value)
UtcDate getValue () const throw ( IncorrectDataFormat )
 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 419 of file Field.h.


Constructor & Destructor Documentation

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

Definition at line 422 of file Field.h.

: FieldBase( field, UtcDateConvertor::convert( data ) ) {}
FIX::UtcDateField::UtcDateField ( int  field) [inline]

Definition at line 424 of file Field.h.


Member Function Documentation

Definition at line 429 of file Field.h.

References FIX::UtcDateConvertor::convert(), FIX::FieldBase::getField(), and FIX::FieldBase::getString().

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

    { try
      { return UtcDateConvertor::convert( getString() ); }
      catch( FieldConvertError& )
      { throw IncorrectDataFormat( getField(), getString() ); } }
FIX::UtcDateField::operator UtcDate ( ) const [inline]

Definition at line 434 of file Field.h.

References getValue().

    { return getValue(); }
bool FIX::UtcDateField::operator!= ( const UtcDateField rhs) const [inline]

Definition at line 441 of file Field.h.

References getValue().

    { return getValue() != rhs.getValue(); }
bool FIX::UtcDateField::operator< ( const UtcDateField rhs) const [inline]

Definition at line 437 of file Field.h.

References getValue().

    { return getValue() < rhs.getValue(); }
bool FIX::UtcDateField::operator== ( const UtcDateField rhs) const [inline]

Definition at line 439 of file Field.h.

References getValue().

    { return getValue() == rhs.getValue(); }
void FIX::UtcDateField::setValue ( const UtcDate value) [inline]

Definition at line 427 of file Field.h.

References FIX::UtcDateConvertor::convert(), and FIX::FieldBase::setString().


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