Files
ece-250/P2/Process.h
2023-05-21 23:28:11 -04:00

17 lines
232 B
C++

#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