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


Constructor & Destructor Documentation

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

Definition at line 449 of file Field.h.

: FieldBase( field, UtcTimeOnlyConvertor::convert( data, showMilliseconds ) ) {}
FIX::UtcTimeOnlyField::UtcTimeOnlyField ( int  field,
bool  showMilliseconds = false 
) [inline]

Definition at line 451 of file Field.h.

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

Member Function Documentation

Definition at line 456 of file Field.h.

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

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

    { try
      { return UtcTimeOnlyConvertor::convert( getString() ); }
      catch( FieldConvertError& )
      { throw IncorrectDataFormat( getField(), getString() ); } }
FIX::UtcTimeOnlyField::operator UtcTimeOnly ( ) const [inline]

Definition at line 461 of file Field.h.

References getValue().

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

Definition at line 468 of file Field.h.

References getValue().

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

Definition at line 464 of file Field.h.

References getValue().

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

Definition at line 466 of file Field.h.

References getValue().

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

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