You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
340 B
C++
17 lines
340 B
C++
#ifndef _C4_SUBSTR_FWD_HPP_
|
|
#define _C4_SUBSTR_FWD_HPP_
|
|
|
|
#include "c4/export.hpp"
|
|
|
|
namespace c4 {
|
|
|
|
#ifndef DOXYGEN
|
|
template<class C> struct basic_substring;
|
|
using csubstr = C4CORE_EXPORT basic_substring<const char>;
|
|
using substr = C4CORE_EXPORT basic_substring<char>;
|
|
#endif // !DOXYGEN
|
|
|
|
} // namespace c4
|
|
|
|
#endif /* _C4_SUBSTR_FWD_HPP_ */
|