Stringed Instruments, Inheritance Demo
Public Member Functions | List of all members
Guitar Class Reference

#include <Guitar.h>

Inheritance diagram for Guitar:
StringedInstrument Instrument ElectricGuitar

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")
 
- Public Member Functions inherited from StringedInstrument
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.
 
- Public Member Functions inherited from Instrument
 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 Public Attributes inherited from StringedInstrument
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
 
- Protected Member Functions inherited from StringedInstrument
string ToMembersXML ()
 return a string represention of all the data in the class serialized as XML without the outer class tag
 
- Protected Member Functions inherited from Instrument
string ToMembersXML ()
 Returns an XML string of the data in the class wihout the outer tag with the classname.
 
- Protected Attributes inherited from StringedInstrument
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.
 
- Protected Attributes inherited from Instrument
string brand
 Brand Name of Product.
 
string model
 Model Name of Product.
 
double cost
 Wholesale Price.
 
double retail_price
 Retail Price.
 

Detailed Description

The Guitar class is a child of Instrument nothing new added but we did overload the ToXML and added a constructor

Constructor & Destructor Documentation

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


The documentation for this class was generated from the following files: