Public Types | Static Public Member Functions | List of all members
latin1_writer Struct Reference

Public Types

typedef uint8_tvalue_type
 

Static Public Member Functions

static value_type low (value_type result, uint32_t ch)
 
static value_type high (value_type result, uint32_t ch)
 

Detailed Description

Definition at line 912 of file pugixml.cpp.

Member Typedef Documentation

◆ value_type

Definition at line 914 of file pugixml.cpp.

Member Function Documentation

◆ high()

static value_type latin1_writer::high ( value_type  result,
uint32_t  ch 
)
inlinestatic

Definition at line 923 of file pugixml.cpp.

924  {
925  (void)ch;
926 
927  *result = '?';
928 
929  return result + 1;
930  }

◆ low()

static value_type latin1_writer::low ( value_type  result,
uint32_t  ch 
)
inlinestatic

Definition at line 916 of file pugixml.cpp.

917  {
918  *result = static_cast<uint8_t>(ch > 255 ? '?' : ch);
919 
920  return result + 1;
921  }

The documentation for this struct was generated from the following file:
uint8_t
unsigned char uint8_t
Definition: stdint_msvc.h:79

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