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

Public Types

typedef uint32_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)
 
static value_type any (value_type result, uint32_t ch)
 

Detailed Description

Definition at line 886 of file pugixml.cpp.

Member Typedef Documentation

◆ value_type

Definition at line 888 of file pugixml.cpp.

Member Function Documentation

◆ any()

static value_type utf32_writer::any ( value_type  result,
uint32_t  ch 
)
inlinestatic

Definition at line 904 of file pugixml.cpp.

905 {
906 *result = ch;
907
908 return result + 1;
909 }

◆ high()

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

Definition at line 897 of file pugixml.cpp.

898 {
899 *result = ch;
900
901 return result + 1;
902 }

◆ low()

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

Definition at line 890 of file pugixml.cpp.

891 {
892 *result = ch;
893
894 return result + 1;
895 }

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

Generated on Fri Sep 27 2024 13:45:21 for QuickFIX by doxygen 1.9.8 written by Dimitri van Heesch, © 1997-2001