Mirror reflection library 0.5.13
|
00001 00010 #ifndef MIRROR_CT_STRING_BASIC_STRING_1105240825_HPP 00011 #define MIRROR_CT_STRING_BASIC_STRING_1105240825_HPP 00012 00013 #include <mirror/config.hpp> 00014 00015 MIRROR_NAMESPACE_BEGIN 00016 namespace cts { 00017 00019 00038 template <typename Char, Char ... C> 00039 struct basic_string 00040 { 00041 typedef basic_string<Char, C...> type; 00042 }; 00043 00045 00050 template <char ... C> 00051 struct string 00052 : basic_string<char, C...> 00053 { }; 00054 00055 } // namespace cts 00056 MIRROR_NAMESPACE_END 00057 00058 #endif //include guard 00059