I recently needed to add member functions like these into my class
istream& read(istream&) ;
ostream& print(ostream&);
I am a little confused on how to actually call these functions within my class. I am more familiar with overloading the insertion and extraction operator since the prototype for those makes a lot more sense to me; however, one of my program spec is that I need to use these. What do I need to put into the function as a parameter?