//#ifndef MECHANICBILL_H //#define MECHANICBILL_H #include #include "MechanicBill.h" using namespace std; int main() { MechanicBill customer1;//customer 2( int brake_pads = 3, int tires = 4, double quarts_oil = 3.8 ); customer1.set_brake_pads(2); customer1.set_tires(4); customer1.set_oil(7.5); customer1.calc_parts_cost; customer1.calc_labor_cost; customer1.calc_tax_cost; customer1.calc_total; return 0; }