Stringed Instruments, Inheritance Demo
|
#include <Guitar.h>
Public Member Functions | |
string | ToXML () |
return a string represention of the entire class serialized as XML | |
Guitar (string brand="", string model="", double cost=0, double retail_price=0, int string_type=StringedInstrument::steel, string standard_tuning="E,A,D,G,B,E") | |
![]() | |
string | ToString () |
Returns a string representation of the data in the class. | |
string | ToXML () |
return a string represention of the entire class serialized as XML | |
StringedInstrument (string brand="", string model="", double cost=0, double retail_price=0, short int string_type=StringedInstrument::nylon, string standard_tuning="") | |
string | GetStandardTuning () |
Accessor function. | |
int | GetStringType () |
Accessor function. | |
string | GetStringTypeName () |
return a string representing the string type instead of the int value | |
void | SetStandardTuning (string) |
Mutator function. | |
void | SetStringType (int) |
Mutator function. | |
![]() | |
Instrument (string brand="", string model="", double cost=0, double retail_price=0) | |
string | ToString () |
Returns a string representation of the entire class. | |
string | ToXML () |
Returns an XML string of the entire class. | |
string | GetBrand () |
Accessor function. | |
string | GetModel () |
Accessor function. | |
double | GetCost () |
Accessor function. | |
double | GetRetailPrice () |
Accessor function. | |
void | SetBrand (string) |
Mutator function. | |
void | SetModel (string) |
Mutator function. | |
void | SetCost (double) |
Mutator function. | |
void | SetRetailPrice (double) |
Mutator function. | |
Additional Inherited Members | |
![]() | |
static const int | nylon =0 |
a constant value for the string_type member | |
static const int | steel =1 |
a constant value for the string_type member | |
static const int | rubber =2 |
a constant value for the string_type member | |
![]() | |
string | ToMembersXML () |
return a string represention of all the data in the class serialized as XML without the outer class tag | |
![]() | |
string | ToMembersXML () |
Returns an XML string of the data in the class wihout the outer tag with the classname. | |
![]() | |
string | standard_tuning |
A string representation of the default note for each string. | |
short int | string_type |
An integer value that represents the material type of the strings. | |
![]() | |
string | brand |
Brand Name of Product. | |
string | model |
Model Name of Product. | |
double | cost |
Wholesale Price. | |
double | retail_price |
Retail Price. | |
The Guitar class is a child of Instrument nothing new added but we did overload the ToXML and added a constructor
Guitar::Guitar | ( | string | brand = "" , |
string | model = "" , |
||
double | cost = 0 , |
||
double | retail_price = 0 , |
||
int | string_type = StringedInstrument::steel , |
||
string | standard_tuning = "E,A,D,G,B,E" |
||
) |
Parameterized constructor, with default values for all the fields