RetroArch
|
Output stream wrapper with dynamically bound encoding and automatic encoding detection. More...
#include <encodedstream.h>
Public Types | |
typedef CharType | Ch |
Public Member Functions | |
AutoUTFOutputStream (OutputByteStream &os, UTFType type, bool putBOM) | |
Constructor. More... | |
UTFType | GetType () const |
void | Put (Ch c) |
void | Flush () |
Ch | Peek () const |
Ch | Take () |
size_t | Tell () const |
Ch * | PutBegin () |
size_t | PutEnd (Ch *) |
Private Types | |
typedef void(* | PutFunc) (OutputByteStream &, Ch) |
Private Member Functions | |
RAPIDJSON_STATIC_ASSERT (sizeof(typename OutputByteStream::Ch)==1) | |
AutoUTFOutputStream (const AutoUTFOutputStream &) | |
AutoUTFOutputStream & | operator= (const AutoUTFOutputStream &) |
void | PutBOM () |
Private Attributes | |
OutputByteStream * | os_ |
UTFType | type_ |
PutFunc | putFunc_ |
Output stream wrapper with dynamically bound encoding and automatic encoding detection.
CharType | Type of character for writing. |
OutputByteStream | type of output byte stream to be wrapped. |
typedef CharType AutoUTFOutputStream< CharType, OutputByteStream >::Ch |
|
private |
|
inline |
Constructor.
os | output stream to be wrapped. |
type | UTF encoding type. |
putBOM | Whether to write BOM at the beginning of the stream. |
|
private |
|
inline |
|
inline |
|
private |
|
inline |
|
inline |
|
inline |
|
inlineprivate |
|
inline |
|
private |
|
inline |
|
inline |
|
private |
|
private |
|
private |