|
#ifndef PROCESS_H
|
|
#define PROCESS_H
|
|
|
|
#include "PageTable.h"
|
|
|
|
class Process {
|
|
public:
|
|
PageTable *pageTable;
|
|
unsigned int executionTime, elapsedTime;
|
|
Process(PageTable *pageTable, unsigned int executionTime);
|
|
[[nodiscard]] bool is_finished() const;
|
|
};
|
|
|
|
|
|
|
|
#endif //PROCESS_H
|