aboutsummaryrefslogtreecommitdiff
path: root/libs/installer_omod/src/interop/StdDotNetConverters.h
blob: 04c2ada7b0231f69b175318c67bd9bc7b849853e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

using namespace cli;

#include <string>

std::wstring toWString(System::String^ string);

std::string toUTF8String(System::String^ string);

System::String^ toDotNetString(const std::wstring& wString);

std::exception toStdException(System::Exception^ exception);