#include <Student.h>
|
| Student (std::string first, std::string last, std::string addr, int yr, std::string box) |
|
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 *
◆ Student()
Student::Student |
( |
std::string |
first, |
|
|
std::string |
last, |
|
|
std::string |
addr, |
|
|
int |
yr, |
|
|
std::string |
box |
|
) |
| |
- Parameters
-
first | a student's first name * |
last | a student's last name * |
eAddress | a student's email address * |
year | the student's class or expected-graduation year * |
box | the student's campus post office box *
|
◆ print()
std::ostream & Student::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: