Files
UnrealEngineUWP/Engine/Source/Developer/Windows/LiveCodingServer/Private/External/LC_OutputFile.h
Jack Porter 9d2ebe90d2 Merging //UE4/Dev-Main to Dev-Mobile (//UE4/Dev-Mobile)
#rb None
#jira 0

[CL 5396125 by Jack Porter in Dev-Mobile branch]
2019-03-14 00:59:16 -04:00

22 lines
389 B
C++

// Copyright 2011-2019 Molecular Matters GmbH, all rights reserved.
#pragma once
#include "CoreTypes.h"
#include "Windows/MinimalWindowsAPI.h"
class OutputFile
{
public:
explicit OutputFile(const wchar_t* logFilePath);
~OutputFile(void);
void Log(const char* msg);
void Log(const char* msg, int type);
private:
void WriteToFile(const char* text);
Windows::HANDLE m_logFile;
};