19 lines
247 B
C++
19 lines
247 B
C++
//
|
|
// Created by rhinemann on 10.03.25.
|
|
//
|
|
|
|
#ifndef PAGETABLE_H
|
|
#define PAGETABLE_H
|
|
|
|
#include <vector>
|
|
|
|
#include "PTE.h"
|
|
|
|
class PageTable {
|
|
public:
|
|
std::vector<PTE> entries;
|
|
PTE &operator[](int index);
|
|
};
|
|
|
|
#endif //PAGETABLE_H
|