Reference no: EM13168394
Create a class to describe a customer. This customer will be initialized and placed in a line to order burgers.
Each customer will have:
A name (example: "Ronald")
A sequence number (the order in which they are created/added to the line)
An order size (the number of burgers they want).
Make a class constructor that initializes a customer with a name, number, and order size.
Make class member functions to print each of: name, number, and order size.
Make class member functions that set each of: name, number, and order size.
Make class member functions that return each of: name, number, and order size.