// Program Name:  Cheap Banker
// Programmer: Mark Dehus
// Assignment Number: Project 3
// Purpose: To write a program that uses the bankers algorithm

#include <string>

#ifndef PROCESS_H
#define PROCESS_H

using namespace std;

class Process 
{
	public:
  		string name;
		int max_a, max_b, max_c, max_d;
		int need_a, need_b, need_c, need_d;
		int req_a, req_b, req_c, req_d;
		int a, b, c, d;
		bool finish;
		Process(){}
  		~Process(){}
  		void set_resources(string, string);	
};

#endif

