Public Member Functions | List of all members
FIX::IntField Class Reference

Field that contains an integer value. More...

#include <Field.h>

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

Public Member Functions

 IntField (int field, int data)
 
 IntField (int field)
 
void setValue (int value)
 
int getValue () const throw ( IncorrectDataFormat )
 
 operator const int () const
 
- Public Member Functions inherited from FIX::FieldBase
 FieldBase (int tag, const std::string &string)
 
virtual ~FieldBase ()
 
 FieldBase (const FieldBase &rhs)
 
FieldBaseoperator= (const FieldBase &rhs)
 
void swap (FieldBase &rhs)
 
void setTag (int tag)
 
void setField (int field)
 
void setString (const std::string &string)
 
int getTag () const
 Get the fields integer tag.
 
int getField () const
 
const std::string & getString () const
 Get the string representation of the fields value.
 
const std::string & getFixString () const
 Get the string representation of the Field (i.e.) 55=MSFT[SOH].
 
size_t getLength () const
 Get the length of the fields string representation.
 
int getTotal () const
 Get the total value the fields characters added together.
 
bool operator< (const FieldBase &field) const
 Compares fields based on their tag numbers.
 

Detailed Description

Field that contains an integer value.

Definition at line 403 of file Field.h.

Constructor & Destructor Documentation

◆ IntField() [1/2]

FIX::IntField::IntField ( int  field,
int  data 
)
inlineexplicit

Definition at line 406 of file Field.h.

407: FieldBase( field, IntConvertor::convert( data ) ) {}
FieldBase(int tag, std::string::const_iterator valueStart, std::string::const_iterator valueEnd, std::string::const_iterator tagStart, std::string::const_iterator tagEnd)
Constructor which also calculates field metrics.
Definition Field.h:80
static std::string convert(signed_int value)

◆ IntField() [2/2]

FIX::IntField::IntField ( int  field)
inline

Definition at line 408 of file Field.h.

409: FieldBase( field, "" ) {}

Member Function Documentation

◆ getValue()

int FIX::IntField::getValue ( ) const
throw (IncorrectDataFormat
)
inline

Definition at line 413 of file Field.h.

414 { try
415 { return IntConvertor::convert( getString() ); }
416 catch( FieldConvertError& )
417 { throw IncorrectDataFormat( getTag(), getString() ); } }
const std::string & getString() const
Get the string representation of the fields value.
Definition Field.h:152
int getTag() const
Get the fields integer tag.
Definition Field.h:144

References FIX::IntConvertor::convert(), FIX::FieldBase::getString(), and FIX::FieldBase::getTag().

Referenced by operator const int().

◆ operator const int()

FIX::IntField::operator const int ( ) const
inline

Definition at line 418 of file Field.h.

419 { return getValue(); }
int getValue() const
Definition Field.h:413

References getValue().

◆ setValue()

void FIX::IntField::setValue ( int  value)
inline

Definition at line 411 of file Field.h.

412 { setString( IntConvertor::convert( value ) ); }
void setString(const std::string &string)
Definition Field.h:136

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


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

Generated on Mon Oct 14 2024 06:04:44 for QuickFIX by doxygen 1.9.8 written by Dimitri van Heesch, © 1997-2001