removed QWQNG, added stdin
This commit is contained in:
commit
0fe369bc5a
39 changed files with 3095 additions and 0 deletions
21
RandTest/MonkeyBitmap.h
Executable file
21
RandTest/MonkeyBitmap.h
Executable file
|
|
@ -0,0 +1,21 @@
|
|||
#pragma once
|
||||
|
||||
#pragma warning( disable : 4005 )
|
||||
#include <stdint.h>
|
||||
#pragma warning( default : 4005 )
|
||||
|
||||
class CMonkeyBitmap
|
||||
{
|
||||
public:
|
||||
CMonkeyBitmap(void);
|
||||
~CMonkeyBitmap(void);
|
||||
|
||||
// Sets the entire bit memory map to 0's
|
||||
void Clearmap(void);
|
||||
// Check in Bitmap if this word has already been used, true if tested previously, false otherwise;
|
||||
bool CheckWord(uint32_t Word20Bit);
|
||||
|
||||
protected:
|
||||
// Bitmap
|
||||
uint32_t Word[32768];
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue