Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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>?

share|improve this question

marked as duplicate by AProgrammer, Nicol Bolas, Magnus Hoff, anatolyg, Gorpik Aug 20 '12 at 12:45

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

4 Answers

up vote 1 down vote accepted

std::ofstream is defined in <iostream>

Nope. It could be declared there, but it's defined in fstream.

share|improve this answer

You have a typo: You mean to have an ofstream, but your code says ostream. The latter is only a base class and can't be instantiated directly. (And you need the <fstream> header for it, not <iostream>.)

share|improve this answer
Yes, I edited the code. Thank you. – user1434698 Aug 20 '12 at 12:43
@R.M.: But now your claim that ofstream is defined in iostream is just plain dubious, non? (And in fact it blatantly is not.) – Kerrek SB Aug 20 '12 at 12:44
Non. My question comes from the fact that the error I obtained is not undefined symbolor something like that – user1434698 Aug 20 '12 at 12:47
@R.M.: "undefined symbol" is a linker error, not a compiler error. Are you sure you're not confusing declaration and definition? – Kerrek SB Aug 20 '12 at 12:50

Because definition is in #include <fstream> . You should also look at:

Why do I need to include both the iostream and fstream headers to open a file for more details.

share|improve this answer

So, C++ standard says nothing about includes of header-files in other header-files. For construct and use std::ofstream - you should include fstream header.

share|improve this answer