DotNetDupe 4.0.6
C++17/20 Implementation of the .NET Base Class Library (BCL)
Loading...
Searching...
No Matches
InternalStringConvert.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5namespace DotNetDupe {
6 namespace System {
7 namespace Internal {
9 public:
10 static std::string WCharToUtf8(const wchar_t* pWStr);
11 static std::wstring Utf8ToWChar(const char* pUtf8Str);
12 };
13
14 inline std::string WCharToUtf8(const wchar_t* pWStr) {
16 }
17
18 inline std::wstring Utf8ToWChar(const char* pUtf8Str) {
20 }
21 }
22 }
23}
static std::wstring Utf8ToWChar(const char *pUtf8Str)
static std::string WCharToUtf8(const wchar_t *pWStr)
std::string WCharToUtf8(const wchar_t *pWStr)
std::wstring Utf8ToWChar(const char *pUtf8Str)