Initial commit

This commit is contained in:
jslightham
2023-05-21 23:28:11 -04:00
commit 0360e7dfcc
31 changed files with 2068 additions and 0 deletions

16
P2/Process.h Normal file
View File

@@ -0,0 +1,16 @@
#ifndef PROCESS_H
#define PROCESS_H
class Process
{
public:
unsigned int getPid();
int getStartingIndex();
Process(unsigned int PID, int startingIndex);
private:
unsigned int PID;
int startingIndex;
};
#endif