Possible Duplicate:
Why do I need to include both the iostream and fstream headers to open a file
I wrote this code:
#include <iostream>
int main()
{
std::ofstream file_out("file.txt");
file_out.close();
return 0;
}
std::ofstream is defined in <iostream>, but compiling this code I obtain the following error:
error: variable 'std::ofstream file_out' has initializer but incomplete type
I discovered that if I also include <fstream> the error disappears and the code compiles. Why have I to include <fstream> if std::ofstream is included in <iostream>?
