#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 // template using string = sprout::basic_string; // // wstring // template using wstring = sprout::basic_string; // // u16string // template using u16string = sprout::basic_string; // // u32string // template using u32string = sprout::basic_string; #endif // #if SPROUT_USE_TEMPLATE_ALIASES } // namespace sprout #endif // #ifndef SPROUT_STRING_ALIAS_HPP