qxLib
string_setup.h
Go to the documentation of this file.
1 /**
2 
3  @file string_setup.h
4  @author Khrapov
5  @date 10.06.2023
6  @copyright � Nick Khrapov, 2023. All right reserved.
7 
8 **/
9 #pragma once
10 
11 #include <qx/macros/config.h>
12 #include <qx/meta/tuple_utils.h>
13 
14 #define QX_ALL_CHAR_TYPES char, wchar_t
15 
16 #if !defined(QX_CONF_USE_CHAR) && !defined(QX_CONF_USE_WCHAR)
17  #define QX_CONF_USE_WCHAR
18 #endif
19 
20 namespace qx::details
21 {
22 
23 using all_char_types = std::tuple<QX_ALL_CHAR_TYPES>;
24 
25 }
26 
27 
28 #ifdef QX_CONF_USE_CHAR
29 
30  #define QX_CHAR_TYPE char
31  #define _QX_TEXT(quote) quote
32 
33 #elif defined(QX_CONF_USE_WCHAR)
34 
35  #define QX_CHAR_TYPE wchar_t
36  #define _QX_TEXT(quote) L##quote
37 
38  #if !defined(QX_CONF_UNICODE_MACRO)
39  #define QX_CONF_UNICODE_MACRO 1
40  #endif
41 
42  #if QX_CONF_UNICODE_MACRO && QX_WIN
43  #define UNICODE
44  #endif
45 
46 #endif
47 
48 #define QX_TEXT(quote) _QX_TEXT(quote)
49 
50 namespace qx
51 {
52 
53 using char_type = QX_CHAR_TYPE;
54 using forbidden_char_types = tuple::remove_t<details::all_char_types, std::tuple<char_type>>;
55 
56 } // namespace qx
Contains utils for working with std::tuple.