qxLib
string_view.h
Go to the documentation of this file.
1 /**
2 
3  @file string_view.h
4  @author Khrapov
5  @date 11.06.2023
6  @copyright © Nick Khrapov, 2023. All right reserved.
7 
8 **/
9 #pragma once
10 
12 
13 #include <string_view>
14 
15 namespace qx
16 {
17 
18 // the string views are to be replaced with our own type
19 template<class... args_t>
20 using basic_string_view = std::basic_string_view<args_t...>;
21 
22 using cstring_view = basic_string_view<char>;
23 using wstring_view = basic_string_view<wchar_t>;
24 using string_view = basic_string_view<char_type>;
25 
26 } // namespace qx