Good day. I was surprised to see that there are no members on objects declared as IFSTREAM and OFSTREAM. I have this code;
ifstream indata;
ofstream outdata;
indata.open("");
outdata.open("");
It can't seem to recognize the member "open". Why is that? Any solution?