Static Public Member Functions | List of all members
FIX::CharConvertor Struct Reference

Converts character to/from a string. More...

#include <FieldConvertors.h>

Static Public Member Functions

static std::string convert (char value)
 
static bool convert (const std::string &value, char &result)
 
static char convert (const std::string &value) throw ( FieldConvertError )
 

Detailed Description

Converts character to/from a string.

Definition at line 389 of file FieldConvertors.h.

Member Function Documentation

◆ convert() [1/3]

static std::string FIX::CharConvertor::convert ( char  value)
inlinestatic

Definition at line 391 of file FieldConvertors.h.

400 {

Referenced by FIX::operator<=(), and FIX::operator>=().

◆ convert() [2/3]

static char FIX::CharConvertor::convert ( const std::string &  value)
throw (FieldConvertError
)
inlinestatic

Definition at line 404 of file FieldConvertors.h.

408  {
409  if( value.size() != 1 ) return false;
410  switch( value[0] )
411  {
412  case 'Y': result = true; break;

◆ convert() [3/3]

static bool FIX::CharConvertor::convert ( const std::string &  value,
char &  result 
)
inlinestatic

Definition at line 397 of file FieldConvertors.h.

400 {
401  static std::string convert( bool value )
402  {

References FIX::BoolConvertor::convert().


The documentation for this struct was generated from the following file:
FIX::CharConvertor::convert
static std::string convert(char value)
Definition: FieldConvertors.h:391

Generated on Wed Apr 29 2020 19:41:30 for QuickFIX by doxygen 1.8.17 written by Dimitri van Heesch, © 1997-2001