// Customer.h      Dave Reed      davereed@creighton.edu
//////////////////////////////////////////////////////////


#ifndef _CUSTOMER_H_
#define _CUSTOMER_H_

#include "Die.h"

class Customer {            
  public:               
    Customer(int id = 0, int arrTime = 0);
    int getID();
    int getArrivalTime();
    int getJobLength();
  private:
    static const int MAX_LENGTH;
    int customerID;
    int arrivalTime;
    int jobLength;
};

#endif
