mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
36 lines
810 B
C++
36 lines
810 B
C++
#ifndef SPROUT_STRING_ALIAS_HPP
|
|
#define SPROUT_STRING_ALIAS_HPP
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#if SPROUT_USE_TEMPLATE_ALIASES
|
|
# include <cstddef>
|
|
# include <sprout/string/string.hpp>
|
|
#endif // #if SPROUT_USE_TEMPLATE_ALIASES
|
|
|
|
namespace sprout {
|
|
#if SPROUT_USE_TEMPLATE_ALIASES
|
|
//
|
|
// string
|
|
//
|
|
template<std::size_t N>
|
|
using string = sprout::basic_string<char, N>;
|
|
//
|
|
// wstring
|
|
//
|
|
template<std::size_t N>
|
|
using wstring = sprout::basic_string<wchar_t, N>;
|
|
//
|
|
// u16string
|
|
//
|
|
template<std::size_t N>
|
|
using u16string = sprout::basic_string<char16_t, N>;
|
|
//
|
|
// u32string
|
|
//
|
|
template<std::size_t N>
|
|
using u32string = sprout::basic_string<char32_t, N>;
|
|
#endif // #if SPROUT_USE_TEMPLATE_ALIASES
|
|
} // namespace sprout
|
|
|
|
#endif // #ifndef SPROUT_STRING_ALIAS_HPP
|