spz3/Process.h

17 lines
308 B
C++

#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