Public Member Functions | Private Attributes
FIX::FieldBase::field_metrics Class Reference

Class used to store field metrics like total length and checksum. More...

List of all members.

Public Member Functions

 field_metrics (const int length, const int checksum)
int getLength () const
int getCheckSum () const
bool isValid () const

Private Attributes

int m_length
int m_checksum

Detailed Description

Class used to store field metrics like total length and checksum.

Definition at line 49 of file Field.h.


Constructor & Destructor Documentation

FIX::FieldBase::field_metrics::field_metrics ( const int  length,
const int  checksum 
) [inline]

Definition at line 53 of file Field.h.

      : m_length( length )
      , m_checksum( checksum )
    {}

Member Function Documentation

Definition at line 61 of file Field.h.

References m_checksum.

Referenced by FIX::FieldBase::getTotal().

    { return m_checksum; }

Definition at line 58 of file Field.h.

References m_length.

Referenced by FIX::FieldBase::getLength().

    { return m_length; }
bool FIX::FieldBase::field_metrics::isValid ( ) const [inline]

Definition at line 64 of file Field.h.

References m_length.

Referenced by FIX::FieldBase::calculate().

    { return m_length > 0; }

Member Data Documentation

Definition at line 70 of file Field.h.

Referenced by getCheckSum().

Definition at line 69 of file Field.h.

Referenced by getLength(), and isValid().


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

Generated on Mon Jun 23 2014 23:49:39 for QuickFIX by doxygen 1.7.6.1 written by Dimitri van Heesch, © 1997-2001