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

#include <Ukulele.h>

Inheritance diagram for Ukulele:
StringedInstrument Instrument

Public Member Functions

string ToXML ()
 return a string represention of the entire class serialized as XML
 
 Ukulele (string brand="", string model="", double cost=0, double retail_price=0, int size=Ukulele::concert)
 
- 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.
 

Static Public Attributes

static const int soprano =0
 a constant value for the size member
 
static const int concert =1
 a constant value for the size member
 
static const int tenor =2
 a constant value for the size member
 
static const int baritone =3
 a constant value for the size member
 
- 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

int size
 integer value that represents the size of the ukulele
 
- 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.
 

Additional Inherited Members

- 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.
 

Detailed Description

The Ukulele class is a child of Instrument we add a size value and some constants

Constructor & Destructor Documentation

Ukulele::Ukulele ( string  brand = "",
string  model = "",
double  cost = 0,
double  retail_price = 0,
int  size = Ukulele::concert 
)

Parameterized constructor, with default values for all the fields


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