#include "PCB.h"

PCB::PCB()
{
	
}

PCB::PCB(int id, int counter)
{
	pid = id;
	pc = counter;
}

PCB::~PCB()
{

}

void PCB::printPID()
{
	cout << pid << endl;
}

