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

#include <Instrument.h>

Inheritance diagram for Instrument:
StringedInstrument Guitar Ukulele ElectricGuitar

Public Member Functions

 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.
 

Protected Member Functions

string ToMembersXML ()
 Returns an XML string of the data in the class wihout the outer tag with the classname.
 

Protected Attributes

string brand
 Brand Name of Product.
 
string model
 Model Name of Product.
 
double cost
 Wholesale Price.
 
double retail_price
 Retail Price.
 

Detailed Description

This the base class for our demo

Constructor & Destructor Documentation

Instrument::Instrument ( string  brand = "",
string  model = "",
double  cost = 0,
double  retail_price = 0 
)

Parameterized constructor, with default values for all the fields


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