//====================================================//
// //
// Overloaded Input //
// //
//====================================================//
istream& operator>>(istream& input,MYCOMPLEX& w)
{
w.grab(input);
return(input);
}
//====================================================//
// //
// Overloaded Input //
// //
//====================================================//
istream& operator>>(istream& input,MYCOMPLEX* w)
{
w->grab(input);
return(input);
}
//====================================================//
// //
// Overloaded Output //
// //
//====================================================//
ostream& operator<<(ostream& output,const MYCOMPLEX& w)
{
w.print(output);
return(output);
}
//====================================================//
// //
// Overloaded Output //
// //
//====================================================//
ostream& operator<<(ostream& output,const MYCOMPLEX* w)
{
w->print(output);
return(output);
}