Initial commit
This commit is contained in:
17
P2/Process.cpp
Normal file
17
P2/Process.cpp
Normal file
@@ -0,0 +1,17 @@
|
||||
#include "Process.h"
|
||||
|
||||
Process::Process(unsigned int PID, int startingIndex)
|
||||
{
|
||||
this->PID = PID;
|
||||
this->startingIndex = startingIndex;
|
||||
}
|
||||
|
||||
unsigned int Process::getPid()
|
||||
{
|
||||
return this->PID;
|
||||
}
|
||||
|
||||
int Process::getStartingIndex()
|
||||
{
|
||||
return this->startingIndex;
|
||||
}
|
||||
Reference in New Issue
Block a user