1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
#include <iostream>
#include <string>
#include <iomanip>
#include <fstream>
using namespace std;
ifstream OpenInputfile( string inFilePath );
ofstream OpenOutputfile( string outFilePath, int fileType );
void PrintError(ostream & inFile);
void ReadInputLine ( ifstream & inData );
void CalculateBill( int inAdults, int inChildren, bool inMealType, bool inWeekend,
double inDeposit );
void PrintResults( ostream & inFile, int inAdults, int inChildren, bool inDeluxeMeal,
bool inWeekend, double inDeposit, double ADULT_DELUXE,
double ADULT_STANDARD, double childDeluxe,
double childStandard, double tACost, double tCCost,
double tTCost, double tSurcharge, double tTaxTip, double tPCost,
double tBalanceDue, double tDiscount, string tDiscountPercent,
double tDiscountBalance );
bool verboseError = false;
bool saveDataFile = false;
bool saveErrorFile = true;
bool displayBill = true;
ifstream inData;
ofstream outData;
ofstream errData;
bool deluxe = 0;
bool weekend = 0;
int numAdults = 0;
int numChildren = 0;
double deposit = 0.00;
|