class question
{
private:
std::string question;
std::string option[4];
int corr_op;
public:
void cons_in();
void cons_out();
void file_in();
void file_out();
int check(int);
};
When I put this in the main file, it works correctly but whenever I try to use a header file.....it says that 'string in namespace std does not name a type'.