17 lines
232 B
C++
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
|