You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
40 lines
702 B
C++
40 lines
702 B
C++
// Copyright 2011-2020 Molecular Matters GmbH, all rights reserved.
|
|
|
|
#pragma once
|
|
|
|
// BEGIN EPIC MOD
|
|
#include "CoreTypes.h"
|
|
#include "LC_Platform.h"
|
|
#include LC_PLATFORM_INCLUDE(LC_Foundation)
|
|
// END EPIC MOD
|
|
|
|
class SymbolInfo
|
|
{
|
|
public:
|
|
SymbolInfo(const char* const function, const char* const filename, unsigned int line);
|
|
|
|
inline const char* GetFunction(void) const
|
|
{
|
|
return m_function;
|
|
}
|
|
|
|
inline const char* GetFilename(void) const
|
|
{
|
|
return m_filename;
|
|
}
|
|
|
|
inline unsigned int GetLine(void) const
|
|
{
|
|
return m_line;
|
|
}
|
|
|
|
private:
|
|
LC_DISABLE_ASSIGNMENT(SymbolInfo);
|
|
|
|
char m_function[512u];
|
|
// BEGIN EPIC MOD
|
|
char m_filename[WINDOWS_MAX_PATH];
|
|
// END EPIC MOD
|
|
unsigned int m_line;
|
|
};
|