//
// 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