Stringed Instruments, Inheritance Demo
|
#include <Instrument.h>
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. | |
This the base class for our demo
Instrument::Instrument | ( | string | brand = "" , |
string | model = "" , |
||
double | cost = 0 , |
||
double | retail_price = 0 |
||
) |
Parameterized constructor, with default values for all the fields