Ark Server API (ASA) - Wiki
Loading...
Searching...
No Matches
AutomationEvent.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
5#include "CoreTypes.h"
6#include "Misc/DateTime.h"
7#include "Misc/Guid.h"
8
10{
11 Info,
12 Warning,
13 Error
14};
15
17{
18public:
20 : Type(InType)
22 , Context()
23 {
24 }
25
26 FAutomationEvent(EAutomationEventType InType, const FString& InMessage, const FString& InContext)
27 : Type(InType)
30 {
31 }
32
33public:
34
39};
40
42{
47
49 : Event(InEvent)
50 , Filename()
51 , LineNumber(-1)
53 {
54 }
55
56 FAutomationExecutionEntry(FAutomationEvent InEvent, FString InFilename, int32 InLineNumber)
57 : Event(InEvent)
59 , LineNumber(InLineNumber)
61 {
62 }
63
65};
EAutomationEventType
Definition Enums.h:11562
FAutomationEvent(EAutomationEventType InType, const FString &InMessage)
FAutomationEvent(EAutomationEventType InType, const FString &InMessage, const FString &InContext)
EAutomationEventType Type
FString ToString() const
FDateTime Timestamp
FString Filename
int32 LineNumber
FAutomationEvent Event
FAutomationExecutionEntry(FAutomationEvent InEvent, FString InFilename, int32 InLineNumber)
FAutomationExecutionEntry(FAutomationEvent InEvent)
static FDateTime UtcNow()
Definition Guid.h:108