mirror of
https://github.com/Milxnor/Project-Reboot-3.0.git
synced 2026-01-13 19:02:21 +01:00
17 lines
309 B
C++
17 lines
309 B
C++
#pragma once
|
|
|
|
#include "ContainerAllocationPolicies.h"
|
|
|
|
class TBitArray
|
|
{
|
|
private:
|
|
template <typename ArrayType>
|
|
friend class TSparseArray;
|
|
template <typename SetType>
|
|
friend class TSet;
|
|
|
|
private:
|
|
TInlineAllocator<4>::ForElementType<unsigned int> Data;
|
|
int NumBits;
|
|
int MaxBits;
|
|
}; |