Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

This C++ lab will utilize the code from Lab 2.0, replace your Cargo class with a new base class. This will be the base for

This C++ lab will utilize the code from Lab 2.0, replace your Cargo class with a new base class. This will be the base for two

classes created through inheritance. The Cargo class will need to have virtual functions in order to have them

redefined in the child classes. You will be able to use many parts of the new Cargo class in the child classes

since they will have the same arguments/parameters and the same functionality.

*************** LAB 2.0 code is in the bottom ************************

*************** lab5data.txt is provided ***************************************

Child class one will have the information for our 737 aircraft, with the addition of maxload, which is 46000 pounds.

Child class two will have the information for ournew 767 aircraft, which has the following information:

Unit and type: Container or Pallet: AKE, APE, AKC, AQP, AQF, AAP Containers and P1P, P6P Pallets

Unit ID: Container or Pallet type: five digits + airline code; our ID code is IB, e.g. AYF12345IB

Aircraft type: Ours is a 767

Weight: The weight, in pounds, of the loaded container or pallet

Destination: A three alpha character IATA string, e.g. MFR (Medford, OR), or BUR (Burbank, CA)

Maxload: 767-300 max load is 116000 pounds

The 737-200 is a single hold, narrow body aircraft, designed to hold up to approximately 23 tons of cargo.

The 767-300 is a dual hold (upper and lower) designed to handle approximately 58 tons of cargo. IBA does not

carry refrigerator (reefer) containers or animal containers due to handling limitations.

Change private toprotectedin the Cargo class only.

Make two classes which inherit from the Cargo class:Boeing737andBoeing767. Each class will need to inherit a default constructor, a copy constructor, and a constructor that has six parameters. Only one more function will be built in each class; all the rest will be inherited. The unit and type data are different for each class as is the aircraft type. Maxload is provided for both aircraft. Our

737 can hold up to 46000 pounds, and our 767 can hold up to 116000 pounds.

Create two new global functions named load737 and load767. These are used to build a unit for Boeing737 or a Boeing767, respectively.

Revise the main function to call the input function and do nothing else.

The data filelab5data.txtis provided for your use. Your program will be tested with different data, but the format

Is guaranteed to be correctly formatted, and not to exceed 20 lines.

In the input function loop reads one line from the file each time through the loop, look at the aircraft field in the record and call the corresponding build function to build that type of unit. Before calling the appropriate build function, print a header giving the sequence number of the unit read, with the number 1 for the first unit and incremented for each successive unit. For both child classes, ensure that the units are compatible with the aircraft. For example, the 737 cannot hold an AQF type container. Ensure that the weight totals for both types of aircraft are not exceeded by the units assigned to them. If they are at or near capacity, check to ensure that another unit would not put them over the weight limit, if it would, then reject the unit and move on to the next unit in the file.

Store each unit object in anarray of objectsof the appropriate type, either for the 737 or the 767.

Once input has completed, you will have a number of objects of two different types stored in two different arrays.

Use output to send the contents of each arrays objects to the screen, taking care to output all of the 737 units

together and all of the 767 units together as well as the weight totals for both aircraft.

* Use thelab5data.txtfile which will contain data similar to

the following three lines of data;lab5data.txtwill have no

more than 20 lines of data

Pallet PAG PAG45982IB 737 4978 OAK

Container AYF AYF23409AA 767 2209 LAS

Container AAA AAA89023DL 767 5932 DFW

* All weights are in pounds, dont worry about kilograms.

* In the input function, declare an object of type ifstream named

inputFile, which we will use to read from the file.

* At the beginning of the code for the input function, open the

file. If the open fails, send a message to stderr and exit the

program.

* In all the reads within the input function, remove the user

prompt and read from the inputFile object, rather than reading

from the stdin object.

*Hint: We need to use getline when reading the strings.

using>>skips leading white space before reading the data.

getline does not skip this leading whitespace. So,beforeusing

getline use the following code:

while(inputFile.peek() == ' ')

inputFile.get();

peeklooks at the next character you are about to read. If it is

a space,getis used to read the space character, to get it out

of the way. Your output will then be much neater.

* Use a loop to read each line from the file. To do this use a

while loop including all the reading in the input function, as

well building and output of the Cargo.

Hint: you can do this with the following while statement:

while(inputFile.peek() != EOF) or

while(!inputFile.eof) or

while (inputFile >> type)

The peek function will return EOF is there is no next character.

The .eof will turn true when eof is reached

The read of type with >> if true when there is data present, else it is false

* At the bottom of the input function, close the file.

This is good code for opening a file and testing to see if it opened successfully.

ifstream inputFile;

inputFile.open("lab5data.txt");

// If the open fails, send a message and exit

if(!inputFile)

{

std::cerr

exit(0);

}

while (inputFile.peek()!= EOF)

{}

*********************** LAB 2.0*******************************

#include #include #include #include using namespace std;

// Defines a structure to store cargo information class Cargo { //cannot be accessed(or viewed) from outside the class private: //declaration string uldtype; string abbreviation; string uldid; int aircraft; int weight; string destination; // Is accessible from outside the class public: Cargo(); //constructor Cargo(const string uldtype, const string abbreviation, const string uldid, const int aircraft, const int weight, const string destination); Cargo(const Cargo& c2); ~Cargo(); //destructor of cargo //functions used void setuldtype(string uldt); void setabbreviation(string abb); void setuldid(string uldi); void setaircraft(int airc); void setweight(int w); void setdestination(string des); string getuldtype(); string getabbreviation(); string getuldid(); int getaircraft(); int getweight(); string getdestination(); void output(); friend int kilotopound(int kilogram); // friend function overloaded operator == friend bool operator == (const Cargo&, const Cargo&);

};// End of class

// input function

void input();

// Friend function int kilotopound(int kilogram) { return 2.2 * kilogram; }

/** * Function: operator == overload * It takes two Cargo objects for comparison * returns true if dollars and cents are equal; false, otherwise; */ bool operator == (const Cargo& c1, const Cargo& c2) { return (c1.abbreviation == c2.abbreviation && c1.uldid == c2.uldid); }

//program will execute

int main() { input();

return 0;

} // End of main function

// constructor of lab3.2 Cargo::Cargo(const Cargo& c2) { uldtype = c2.uldtype; abbreviation = c2.abbreviation; uldid = c2.uldid; aircraft = c2.aircraft; weight = c2.weight; destination = c2.destination; }

Cargo::Cargo() { uldtype = ""; abbreviation = "XXX"; uldid = "xxxxxIB"; aircraft = 700; weight = 0; destination = " "; }

Cargo::Cargo(const string type, const string abb, const string id, const int craft, const int wt, const string dest) { uldtype = type; abbreviation = abb; uldid = id; aircraft = craft; weight = wt; destination = dest; }

Cargo::~Cargo() { cout }

void Cargo::setuldtype(string uldt) { uldtype = uldt; }

void Cargo::setabbreviation(string abb) { abbreviation = abb; }

void Cargo::setuldid(string uldi) { uldid = uldi; }

void Cargo::setaircraft(int airc) { aircraft = airc; }

void Cargo::setweight(int w) { weight = w; cout char c; cin >> c; if (c == 'y') weight = kilotopound(w); cout }

void Cargo::setdestination(string des) { destination = des; }

string Cargo::getuldtype() { return uldtype; }

string Cargo::getabbreviation() { return abbreviation; }

string Cargo::getuldid() { return uldid; }

int Cargo::getaircraft() { return aircraft; }

int Cargo::getweight() { return weight; }

string Cargo::getdestination() { return destination; }

//display the object contents void Cargo::output() { //menu cout cout cout cout cout cout cout

}// End of function

// function to read Cargo details from file and create a Cargo object and display its details using output function

void input() { // create an object of ifstream ifstream inputFile; // open the file cardata.txt inputFile.open("FULL PATH of carda.txt");

// check if file opened successfully if (!inputFile.is_open()) { cerr exit(0); }

string uldtype, abbreviation, uldid, destination; int aircraft, weight;

// loop to read till the end of file while (inputFile.peek() != EOF) { // read a record (since no string field can contain any spaces, so we use >> operator to read strings instead of getline) inputFile >> uldtype >> abbreviation >> uldid >> aircraft >> weight >> destination;

// create an object of Cargo class Cargo temp(uldtype, abbreviation, uldid, aircraft, weight, destination); // display the Cargo temp.output(); }

inputFile.close(); // close the input file

}// End of function

//end of program

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Introduction to Wireless and Mobile Systems

Authors: Dharma P. Agrawal, Qing An Zeng

4th edition

1305087135, 978-1305087132, 9781305259621, 1305259629, 9781305537910 , 978-130508713

More Books

Students also viewed these Programming questions

Question

What are conversion costs? What are prime costs?

Answered: 1 week ago