A School Directory Application
Package to illustrate classes, subclasses, polymorphism,cout<<<overloading, and virtual functions
Loading...
Searching...
No Matches
Functions
Entry.cpp File Reference
#include <iostream>
#include "Entry.h"
Include dependency graph for Entry.cpp:

Functions

std::ostream & operator<< (std::ostream &os, const Entry &ent)
 
int main ()
 

Function Documentation

◆ main()

int main ( )

Remarks
main procedure to control processing r uncomment this procedure for unit testing *
Here is the call graph for this function:

◆ operator<<()

std::ostream & operator<< ( std::ostream &  os,
const Entry ent 
)

Remarks
overload << for printing an Entry *
use of the virtual print method allows tailored output * by subclasses *