bes Updated for version 3.21.1
The Backend Server (BES) is the lower two tiers of the Hyrax data server
ASCII< CharType > Struct Template Reference

ASCII encoding. More...

#include <encodings.h>

Collaboration diagram for ASCII< CharType >:
Collaboration graph

Public Types

enum  { supportUnicode = 0 }
 
typedef CharType Ch
 

Static Public Member Functions

template<typename InputStream>
static bool Decode (InputStream &is, unsigned *codepoint)
 
template<typename OutputStream>
static void Encode (OutputStream &os, unsigned codepoint)
 
template<typename OutputStream>
static void EncodeUnsafe (OutputStream &os, unsigned codepoint)
 
template<typename OutputByteStream>
static void Put (OutputByteStream &os, Ch c)
 
template<typename OutputByteStream>
static void PutBOM (OutputByteStream &os)
 
template<typename InputByteStream>
static Ch Take (InputByteStream &is)
 
template<typename InputByteStream>
static CharType TakeBOM (InputByteStream &is)
 
template<typename InputStream, typename OutputStream>
static bool Validate (InputStream &is, OutputStream &os)
 

Detailed Description

template<typename CharType = char>
struct ASCII< CharType >

ASCII encoding.

http://en.wikipedia.org/wiki/ASCII

Template Parameters
CharTypeCode unit for storing 7-bit ASCII data. Default is char.
Note
implements Encoding concept

Definition at line 542 of file encodings.h.

Member Typedef Documentation

◆ Ch

template<typename CharType = char>
typedef CharType ASCII< CharType >::Ch

Definition at line 543 of file encodings.h.

Member Enumeration Documentation

◆ anonymous enum

template<typename CharType = char>
anonymous enum

Definition at line 545 of file encodings.h.

Member Function Documentation

◆ Decode()

template<typename CharType = char>
template<typename InputStream>
static bool ASCII< CharType >::Decode ( InputStream & is,
unsigned * codepoint )
inlinestatic

Definition at line 560 of file encodings.h.

◆ Encode()

template<typename CharType = char>
template<typename OutputStream>
static void ASCII< CharType >::Encode ( OutputStream & os,
unsigned codepoint )
inlinestatic

Definition at line 548 of file encodings.h.

◆ EncodeUnsafe()

template<typename CharType = char>
template<typename OutputStream>
static void ASCII< CharType >::EncodeUnsafe ( OutputStream & os,
unsigned codepoint )
inlinestatic

Definition at line 554 of file encodings.h.

◆ Put()

template<typename CharType = char>
template<typename OutputByteStream>
static void ASCII< CharType >::Put ( OutputByteStream & os,
Ch c )
inlinestatic

Definition at line 593 of file encodings.h.

◆ PutBOM()

template<typename CharType = char>
template<typename OutputByteStream>
static void ASCII< CharType >::PutBOM ( OutputByteStream & os)
inlinestatic

Definition at line 587 of file encodings.h.

◆ Take()

template<typename CharType = char>
template<typename InputByteStream>
static Ch ASCII< CharType >::Take ( InputByteStream & is)
inlinestatic

Definition at line 581 of file encodings.h.

◆ TakeBOM()

template<typename CharType = char>
template<typename InputByteStream>
static CharType ASCII< CharType >::TakeBOM ( InputByteStream & is)
inlinestatic

Definition at line 574 of file encodings.h.

◆ Validate()

template<typename CharType = char>
template<typename InputStream, typename OutputStream>
static bool ASCII< CharType >::Validate ( InputStream & is,
OutputStream & os )
inlinestatic

Definition at line 567 of file encodings.h.


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