// // Created by rhinemann on 10.03.25. // #ifndef PAGETABLE_H #define PAGETABLE_H #include #include "PTE.h" class PageTable { public: std::vector entries; PTE &operator[](int index); }; #endif //PAGETABLE_H