#ifndef CALC_WEEKLY_PAY_
#define CALC_WEEKLY_PAY_

double calcWeeklyPay(int hoursWorked, double hourlyRate);
double calcWeeklyPay(double annualSalary);

#endif