[ 5 points] A file contains a customer's shoe size, an integer on the first line and the description of the shoe they wish to purchase on the next line.
The description may contain spaces. Using the following function prototype, build a function which will open the file provided in filename, read in and store the size and description in the associated variables.
void GetRequestFromFile(string fileName, int & shoeSize, string & shoeDescription);