Cogs.Core
Unicode.h
1#pragma once
2
3#ifdef _WIN32
4
5#include "../FoundationBase.h"
6
7#include <string>
8
9namespace Cogs {
11 std::string COGSFOUNDATION_API narrow(std::wstring_view str);
12
14 std::wstring COGSFOUNDATION_API widen(std::string_view str);
15}
16
17#endif
Contains all Cogs related functionality.
Definition: FieldSetter.h:23