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
|
#ifndef _STATIONARYSHOPPROTOTYPES_H_
#define _STATIONARYSHOPPROTOTYPES_H_
struct design
{
string name;
float sheetPrice = 0;
float envelopePrice = 0;
int sheetsInStock = 0;
int envelopesInStock = 0;
};
void informationCollection ();
void informationCheck (string&, string&, string&, string&, string&, string&, string&, string&);
void zipTest (string& zip);
void infoFormat (string&, string&, string&, string&, string&);
void printInvoice (string, int);
void administrator(design southwestDesigns[], design onTheBorderDesigns[]);
void stateTest(string& state);
void phoneTest (string&);
void displayInformation (string, string, string, string, string, string, string, string);
void timeHeader();
void order (string header);
void clrscr ();
void stationaryDataSet (design[], design[]);
#endif
|