A Demo Project for the UnrealEngineSDK
Loading...
Searching...
No Matches
VaRestDefines.h
Go to the documentation of this file.
1// Copyright 2014-2019 Vladimir Alyamkin. All Rights Reserved.
2
3#pragma once
4
5#include "Runtime/Launch/Resources/Version.h"
6
7#include "CoreMinimal.h"
8
9#include "Logging/LogCategory.h"
10#include "Logging/LogMacros.h"
11#include "Logging/LogVerbosity.h"
12
13// You should place include statements to your module's private header files here. You only need to
14// add includes for headers that are used in most of your module's source files though.
15
17
18#define VA_FUNC (FString(__FUNCTION__)) // Current Class Name + Function Name where this is called
19#define VA_LINE (FString::FromInt(__LINE__)) // Current Line Number in the code where this is called
20#define VA_FUNC_LINE (VA_FUNC + "(" + VA_LINE + ")") // Current Class and Line Number where this is called!
DECLARE_LOG_CATEGORY_EXTERN(LogVaRest, Log, All)