Sprout/sprout/string/alias.hpp

32 lines
647 B
C++
Raw Normal View History

2011-12-04 19:06:45 +00:00
#ifndef SPROUT_STRING_ALIAS_HPP
#define SPROUT_STRING_ALIAS_HPP
#include <cstddef>
#include <sprout/config.hpp>
#include <sprout/string.hpp>
namespace sprout {
//
// 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>;
} // namespace sprout
#endif // #ifndef SPROUT_STRING_ALIAS_HPP