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

#include <ElectricGuitar.h>

Inheritance diagram for ElectricGuitar:
Guitar Electric StringedInstrument Instrument

Public Member Functions

string ToXML ()
 return a string represention of all the data in the class serialized as XML
 
string ToString ()
 Returns a string representation of the data in the class.
 
 ElectricGuitar (string brand="", string model="", double cost=0, double retail_price=0, int string_type=StringedInstrument::steel, string bridge_pickup="", string center_pickup="", string neck_pickup="")
 
- Public Member Functions inherited from Guitar
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.
 
- Public Member Functions inherited from Electric
string ToXML ()
 return a string represention of all the data in the class serialized as XML
 
string ToString ()
 Returns a string representation of the data in the class.
 
 Electric (string bridge_pickup="", string center_pickup="", string neck_pickup="")
 
void SetBridgePickup (string)
 mutator funcion
 
void SetCenterPickup (string)
 mutator funcion
 
void SetNeckPickup (string)
 mutator funcion
 
string GetBridgePickup ()
 accessor function
 
string GetCenterPickup ()
 accessor function
 
string GetNeckPickup ()
 accessor function
 

Protected Member Functions

string ToMembersXML ()
 Returns an XML string of the data in the class wihout the outer tag with the classname.
 
- 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 Member Functions inherited from Electric
string ToMembersXML ()
 Returns an XML string of the data in the class wihout the outer tag with the classname.
 

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 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.
 
- Protected Attributes inherited from Electric
string bridge_pickup
 description of the bridge pickup
 
string center_pickup
 description of the center pickup
 
string neck_pickup
 description of the neck pickup
 

Detailed Description

The ElectricGuitar class is a child of Instrument we added some members to represent the electronic pickups

Constructor & Destructor Documentation

ElectricGuitar::ElectricGuitar ( string  brand = "",
string  model = "",
double  cost = 0,
double  retail_price = 0,
int  string_type = StringedInstrument::steel,
string  bridge_pickup = "",
string  center_pickup = "",
string  neck_pickup = "" 
)

Parameterized constructor, with default values for all the fields


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