mirror of
https://github.com/Fennix-Project/Kernel.git
synced 2025-05-25 22:14:37 +00:00
13 lines
206 B
C++
13 lines
206 B
C++
#pragma once
|
|
#include <types.h>
|
|
|
|
class Bitmap
|
|
{
|
|
public:
|
|
size_t Size;
|
|
uint8_t *Buffer;
|
|
bool operator[](uint64_t index);
|
|
bool Set(uint64_t index, bool value);
|
|
bool Get(uint64_t index);
|
|
};
|