#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