Files
UnrealEngineUWP/Engine/Source/Developer/Windows/LiveCodingServer/Private/External/LC_OutputFile.h
Ben Marsh 0e6aa011b3 Copying //UE4/Dev-Build @ CL 11166028 to Dev-Main (//UE4/Dev-Main)
#rb none
#rnx

[CL 11166227 by Ben Marsh in Main branch]
2020-01-29 14:48:18 -05:00

21 lines
351 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);
private:
void WriteToFile(const char* text);
Windows::HANDLE m_logFile;
};