Initial commit
This commit is contained in:
16
P2/Process.h
Normal file
16
P2/Process.h
Normal 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
|
||||
Reference in New Issue
Block a user