u5e
UnicodeTextC++Library
utf8_string.hpp
1 #ifndef INCLUDED_U5E_UTF8_STRING
2 #define INCLUDED_U5E_UTF8_STRING
3 
4 #include <u5e/basic_encodedstring.hpp>
5 #include <u5e/utf8_iterator.hpp>
6 #include <u5e/utf8.hpp>
7 
8 namespace u5e {
9  /**
10  * \class u5e::utf8_string
11  * \brief Typedef: basic_encodedstring of utf8 and std::string
12  *
13  * Although this is a typedef, it shows up in doxygen as a class for
14  * better discoverability.
15  *
16  * \typedef u5e::utf8_string
17  * \brief A basic_encodedstring of utf8 and std::string
18  */
19  typedef basic_encodedstring<utf8, std::string> utf8_string;
20 };
21 
22 #endif
main u5e namespace
Encoding type for UTF8 text. Unlike UTF16 and UTF32, UTF8 is endian independent.
Definition: utf8.hpp:17
basic encoding support over string-like objects.
basic_encodedstring< utf8, std::string > utf8_string
A basic_encodedstring of utf8 and std::string.
Definition: utf8_string.hpp:19