#ifndef SPROUT_STRING_ALIAS_HPP #define SPROUT_STRING_ALIAS_HPP #include #include #if SPROUT_USE_TEMPLATE_ALIASES #include namespace sprout { // // 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; } // namespace sprout #endif // #if SPROUT_USE_TEMPLATE_ALIASES #endif // #ifndef SPROUT_STRING_ALIAS_HPP