|
| Owner () |
| The default constructor initializes all fields to the empty string. More...
|
|
| Owner (Owner &other) |
| The copy constructor copies the contents of another Owner to this one. More...
|
|
Owner & | operator= (Owner &other) |
| The Assignment operator copies the contents of another Owner to this one. More...
|
|
| Owner (const char *i, const char *n, const char *c) |
| The full constructor initalizes the class instance from user supplied parameters. More...
|
|
| ~Owner () |
| The destructor does nothing special. More...
|
|
const char * | Initials () const |
| Return this owner's initials. More...
|
|
const char * | Name () const |
| Return this owner's name. More...
|
|
const char * | Comment () const |
| Return commentary about this owner. More...
|
|
The Owner class describes a car owner.
A car owned has a set of (three letter) initials, a full name, and an (optional) comment. This information is just used for informational purposes.
- Author
- Robert Heller <heller@deepsoft.com>