substr_fwd.hpp (340B)
1 #ifndef _C4_SUBSTR_FWD_HPP_ 2 #define _C4_SUBSTR_FWD_HPP_ 3 4 #include "c4/export.hpp" 5 6 namespace c4 { 7 8 #ifndef DOXYGEN 9 template<class C> struct basic_substring; 10 using csubstr = C4CORE_EXPORT basic_substring<const char>; 11 using substr = C4CORE_EXPORT basic_substring<char>; 12 #endif // !DOXYGEN 13 14 } // namespace c4 15 16 #endif /* _C4_SUBSTR_FWD_HPP_ */