#include <Faculty.h>
|
| Faculty (std::string first, std::string last, std::string addr, std::string room, int ext, std::string department, int yr) |
|
virtual std::ostream & | print (std::ostream &os) const |
|
| Entry () |
|
| Entry (std::string first, std::string last, std::string eAddress) |
|
bool | equals (std::string first, std::string second) |
|
bool | equals (Entry otherEntry) |
|
bool | comesBefore (std::string first, std::string second) |
|
bool | comesBefore (Entry otherEntry) |
|
virtual std::ostream & | print (std::ostream &os) const |
|
virtual | ~Entry () |
|
- Author
- Henry M. Walker *
- Date
- January 11, 2023 *
◆ Faculty()
Faculty::Faculty |
( |
std::string |
first, |
|
|
std::string |
last, |
|
|
std::string |
addr, |
|
|
std::string |
room, |
|
|
int |
ext, |
|
|
std::string |
department, |
|
|
int |
yr |
|
) |
| |
- Parameters
-
first | a faculty member's first name * |
last | a faculty member's last name * |
eAddress | a faculty member's email address * |
room | a faculty member's office * |
ext | the telelphone number extension for the office * |
department | the faculty member's [primary] department * |
yr | the year of the faculty member's first appointment *
|
- Author
- Henry M. Walker *
- Date
- January 11, 2023 *
- Parameters
-
first | a faculty member's first name * |
last | a faculty member's last name * |
eAddress | a faculty member's email address * |
room | a faculty member's office * |
ext | the telelphone number extension for the office * |
department | the faculty member's [primary] department * |
yr | the year of the faculty member's first appointment *
|
◆ print()
std::ostream & Faculty::print |
( |
std::ostream & |
os | ) |
const |
|
virtual |
- Parameters
-
os | output stream which will receive the formatted Faculty data *
- @ewmrk by being a virtual function, implementations in subclasses * will be interpreted via polymorphism *
|
- Returns
- formatted string on the given output stream *
Reimplemented from Entry.
The documentation for this class was generated from the following files: