Example #1
0
int main(){
	// Initialize the scheduler 
	Scheduler S;

	// Load the job list
	string jobfile;
	cout << "Please input the job file name:";
	cin >> jobfile;
	S.load_jobs(jobfile);

	// Scheduling the jobs
	S.round_robin();

	// Print the results
	S.display();
}