cfgfile 0.2.11
|
Trait for std::wstring support. More...
#include <types.hpp>
Public Types | |
using | string_t = std::wstring |
String type. | |
using | char_t = string_t::value_type |
Char type. | |
using | ostream_t = std::wostream |
Out stream type. | |
using | istream_t = std::wistream |
In stream type. | |
using | pos_t = std::streamoff |
Type of pos in stream. | |
using | buf_t = std::vector< char_t > |
Type of the buffer. | |
Static Public Member Functions | |
static string_t | to_string (pos_t pos) |
static string_t | from_ascii (const std::string &str) |
static char_t | from_ascii (char ch) |
static void | noskipws (istream_t &stream) |
static bool | is_at_end (istream_t &stream) |
static bool | is_space (char_t ch) |
static void | to_begin (istream_t &stream) |
static pos_t | size_of_file (istream_t &stream) |
static void | fill_buf (istream_t &stream, buf_t &buf, pos_t buf_size, pos_t &pos, pos_t size) |
Trait for std::wstring support.
using cfgfile::wstring_trait_t::buf_t = std::vector< char_t > |
Type of the buffer.
using cfgfile::wstring_trait_t::char_t = string_t::value_type |
Char type.
using cfgfile::wstring_trait_t::istream_t = std::wistream |
In stream type.
using cfgfile::wstring_trait_t::ostream_t = std::wostream |
Out stream type.
using cfgfile::wstring_trait_t::pos_t = std::streamoff |
Type of pos in stream.
using cfgfile::wstring_trait_t::string_t = std::wstring |
String type.
|
inlinestatic |