Molybden API
Loading...
Searching...
No Matches
string_types.hpp
1
// Copyright (c) 2000-2024 TeamDev. All rights reserved.
2
// TeamDev PROPRIETARY and CONFIDENTIAL.
3
// Use is subject to license terms.
4
5
#ifndef MOLYBDEN_STRING_TYPES_HPP
6
#define MOLYBDEN_STRING_TYPES_HPP
7
8
#include <string>
9
10
namespace
molybden {
11
12
#ifdef OS_WIN
13
using
CharType = wchar_t;
14
#else
15
using
CharType = char;
16
#endif
17
using
StringType = std::basic_string<CharType>;
18
using
StringViewType = std::basic_string_view<CharType>;
19
20
}
// namespace molybden
21
22
#endif
// MOLYBDEN_STRING_TYPES_HPP
include
molybden
base
string_types.hpp