Hey guys, im having problems when i want to create a class Called Files that uses fstream
#include<iostream>
#include<fstream>
class Files:public fstream {
public:
Files(const char* s,ios_base::openmode mode = ios_base::in | ios_base::out):fstream(s,ios_base::openmode mode = ios_base::in | ios_base::out)
};
Does anyone know which parameters should i use on the constructor?