Ark Server API (ASA) - Wiki
Toggle main menu visibility
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Variables
a
b
d
e
f
g
i
k
l
m
n
o
p
q
r
s
t
u
v
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
y
Enumerations
a
c
e
i
l
m
p
s
t
v
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
y
Enumerations
a
c
e
f
i
l
p
t
u
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
y
Related Symbols
:
b
d
e
f
g
i
l
m
n
o
p
s
t
u
w
z
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
z
Functions
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
Variables
a
b
c
e
g
h
i
m
n
o
p
r
s
t
v
Typedefs
a
b
c
e
f
g
i
n
p
s
t
u
v
w
Enumerations
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
Enumerator
a
c
d
e
f
h
i
m
n
o
p
s
t
u
v
w
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
z
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
Loading...
Searching...
No Matches
OutputDeviceArchiveWrapper.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
"Logging/LogVerbosity.h"
7
#
include
"Misc/AssertionMacros.h"
8
#
include
"Misc/OutputDevice.h"
9
10
class
FArchive
;
11
12
/**
13
* Output device wrapping any kind of FArchive. Note: Works in any build configuration.
14
*/
15
class
FOutputDeviceArchiveWrapper
:
public
FOutputDevice
16
{
17
public
:
18
/**
19
* Constructor, initializing member variables.
20
*
21
* @param InArchive Archive to use, must not be nullptr. Does not take ownership of the archive, clean up or delete the archive independently!
22
*/
23
FOutputDeviceArchiveWrapper
(
FArchive
* InArchive)
24
:
LogAr
(InArchive)
25
{
26
check
(InArchive);
27
}
28
29
// FOutputDevice interface
30
virtual
void
Flush
()
override
;
31
virtual
void
Serialize
(
const
TCHAR* Data,
ELogVerbosity
::
Type
Verbosity,
const
class
FName
& Category)
override
;
32
// End of FOutputDevice interface
33
34
private
:
35
FArchive
*
LogAr
;
36
};
check
#define check(expr)
Definition
AssertionMacros.h:305
FArchive
Definition
Archive.h:1125
FName
Definition
NameTypes.h:601
FOutputDeviceArchiveWrapper
Definition
OutputDeviceArchiveWrapper.h:16
FOutputDeviceArchiveWrapper::LogAr
FArchive * LogAr
Definition
OutputDeviceArchiveWrapper.h:35
FOutputDeviceArchiveWrapper::Flush
virtual void Flush() override
FOutputDeviceArchiveWrapper::FOutputDeviceArchiveWrapper
FOutputDeviceArchiveWrapper(FArchive *InArchive)
Definition
OutputDeviceArchiveWrapper.h:23
FOutputDeviceArchiveWrapper::Serialize
virtual void Serialize(const TCHAR *Data, ELogVerbosity::Type Verbosity, const class FName &Category) override
FOutputDevice
Definition
OutputDevice.h:130
ELogVerbosity
Definition
AssertionMacros.h:31
ELogVerbosity::Type
Type
Definition
LogVerbosity.h:17
Downloads
ArkServerAPI_NEW
ASA
AsaApi
AsaApi
Core
Public
API
UE
Misc
OutputDeviceArchiveWrapper.h
Generated by
1.10.0