Ark Server API (ASA) - Wiki
Loading...
Searching...
No Matches
BitArchive.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/AssertionMacros.h"
7#include "Serialization/Archive.h"
8
9/**
10* Base class for serializing bitstreams.
11*/
12class FBitArchive : public FArchive
13{
14public:
15 /**
16 * Default Constructor
17 */
19
20 virtual void SerializeBitsWithOffset( void* Src, int32 SourceBit, int64 LengthBits ) PURE_VIRTUAL(FBitArchive::SerializeBitsWithOffset,);
21};
#define PURE_VIRTUAL(func,...)