memex
Loading...
Searching...
No Matches
typed.hpp
Go to the documentation of this file.
1#pragma once
2#include <string>
3#include <string_view>
4
9namespace typed
10{
11#ifdef UNICODE
12 using tstring = std::wstring;
13 using tstring_view = std::wstring_view;
14#else
15 using tstring = std::string;
16 using tstring_view = std::string_view;
17#endif
18}
This file contains type definitions for string types that are compatible with both ANSI and Unicode b...
Definition typed.hpp:10
std::string tstring
Definition typed.hpp:15
std::string_view tstring_view
Definition typed.hpp:16