Home /
Expert Answers /
Computer Science /
in-c-i-need-to-find-stringinstrument-cpp-stringinstrument-h-every-other-file-is-complete-pa737
(Solved): IN C++ i need to find StringInstrument.cpp,StringInstrument.h. Every other file is complete
...
IN C++ i need to find StringInstrument.cpp,StringInstrument.h. Every other file is complete
Given main() and the Instrument class, define a derived class, StringInstrument, for string instruments, with functions to set and get private data members of the following types: - int to store the number of strings - int to store the number of frets - bool to store whether the instrument is bowed Ex. If the input is: Drums zildjian 2015 2500 Guitar Gibson 2002 1200 6 19 0 the output is: Instrument Information: Name: Drums Manufacturer: zildjian Year built: 2015 Cost: 2500 Instrument Information: Name: Guitar Manufacturer: Gibson Year built: 2002 Cost: 1200 Number of strings: 6 Number of frets: 19 Is bowed: false
File is marked as read only Current file: main.cpp -
File is marked as read only Current file: Instrument.h -
\#ifndef STR_INSTRUMENTH \#define STR_INSTRUMENTH \#include "Instrument.h" class StringInstrument : public Instrument \{ // TODO: Declare private data members: numstrings, numFrets, isBowed // TODO: Declare mutator functions - // SetNumOfstrings(), SetNumOfFrets(), SetisBowed() // TODO: Declare accessor functions - // GetNumOfstrings(), GetNumOfFrets(), GetisBowed() \}; \#endif
File is marked as read only Current file: Instrument.cpp
Current file: Stringlnstrum