I want to assign a ofstream to a ofstream of a routine as shown below.
//CLPOut is also of type ofstream
bool Clipper::SetInstanceParameters(ofstream & p1)
{ //Initialise before operation..,each Instance values ..
CLPOut= p1;
// CLAreaOut= p2;
return true;
}
it fails with error
[bcc32 Error] clipper.cpp(2300): 'operator ios::=(const ios &)' is not accessible in function operator ofstream::=(const ofstream &)