#include <ElectricGuitar.h>
|
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="") |
|
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.
|
|
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
|
|
|
string | ToMembersXML () |
| Returns an XML string of the data in the class wihout the outer tag with the classname.
|
|
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 | ToMembersXML () |
| Returns an XML string of the data in the class wihout the outer tag with the classname.
|
|
|
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 | 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.
|
|
string | bridge_pickup |
| description of the bridge pickup
|
|
string | center_pickup |
| description of the center pickup
|
|
string | neck_pickup |
| description of the neck pickup
|
|
The ElectricGuitar class is a child of Instrument we added some members to represent the electronic pickups
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: