Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
stenzek
GitHub Repository: stenzek/duckstation
Path: blob/master/dep/rapidyaml/include/c4/substr_fwd.hpp
4261 views
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_ */
17
18