TBitArray: Changed struct to class

This commit is contained in:
Ladislav Zezula
2020-10-25 16:26:18 +01:00
parent 738444bddc
commit ece4f1ad66
2 changed files with 4 additions and 2 deletions

View File

@@ -59,8 +59,10 @@ static DWORD GetNecessaryBitCount(ULONGLONG MaxValue)
//-----------------------------------------------------------------------------
// Implementation of the TBitArray struc
struct TBitArray
class TBitArray
{
public:
void GetBits(unsigned int nBitPosition, unsigned int nBitLength, void * pvBuffer, int nResultSize);
void SetBits(unsigned int nBitPosition, unsigned int nBitLength, void * pvBuffer, int nResultSize);