Implement the constructor for the InstallRecord class declared in Exercise 10.
Exercise 10
Given the following declaration for a class that represents a computer in a company’s inventory, write a derived class declaration (for a class called InstallRecord) that adds (1) a string field representing the location of the computer and (2) a field of class SimpleDate that holds the installation date. The new class should provide observers for each of the new fields. It should also reimplement the Write function.
class Computer{public: Computer(string newName, string newBrand, string newModel, int newSpeed, string newSerial, int newNumber); string GetName() const; string GetBrand() const; string GetModel() const; int GetSpeed() const; string GetSerial() const; int GetNumber() const; void Write() const;private: string name; string brand; string model; int speed; string serialNumber; int inventoryNumber;};
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.