/*============================================================================= Copyright (c) 2011-2014 Bolero MURAKAMI https://github.com/bolero-MURAKAMI/Sprout Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) =============================================================================*/ #ifndef SPROUT_STRING_ALIAS_HPP #define SPROUT_STRING_ALIAS_HPP #include #if SPROUT_USE_TEMPLATE_ALIASES # include # include #endif // #if SPROUT_USE_TEMPLATE_ALIASES namespace sprout { #if SPROUT_USE_TEMPLATE_ALIASES // // string // wstring // u16string // u32string // template using string = sprout::basic_string; template using wstring = sprout::basic_string; template using u16string = sprout::basic_string; template using u32string = sprout::basic_string; #endif // #if SPROUT_USE_TEMPLATE_ALIASES } // namespace sprout #endif // #ifndef SPROUT_STRING_ALIAS_HPP