blob: 0840b02cbfc8fb954b849df1c85dcb34fe974b25 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include "stdafx.h"
#include "log.h"
#include <iostream>
void Log(const wchar_t *str)
{
std::wcout << str << std::endl;
}
void Log(const std::wstring &str)
{
Log(str.c_str());
}
|