17 lines
288 B
C
17 lines
288 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);
|
||
|
bool is_finished();
|
||
|
};
|
||
|
|
||
|
|
||
|
|
||
|
#endif //PROCESS_H
|