#include "stdstuff.h" #include "Date.h" class Customer { private: int id; // customer id (1 to 1000) double total; // customer total (greater than or equal to 0) Date purchDate; // customer purchase date (in 2000 thru 2015) String2002 custName; // customer name (1 to 20 characters, spaces and special characters allowed) public: // Your method prototypes go here. Remember to describe each method (i.e. comments!) // and use "const" where appropriate. // the constructor creates a customer with id 10, total 0, date 1 1 2011 and name "default" Customer(); // put the rest of the method prototypes here };