I am building a simple DLL. I included iostream.h, and got a compiler error about this being depreciated. So I read up and learned I am supposed to use <iostream> to get the standard C++ libraries. But when I include <iostream>, non of my cout symbols are defined.
Can someone tell me if there is something special I need to do to use cout when I include <iostream>?? The docs say I get the new standard c++ libraries automatically if I include <iostream>.
I suspect that some of the other code I am including (not written by me) have includes such as stdio.h. Is there a way to work with this?
thanks
Bryan
Can someone tell me if there is something special I need to do to use cout when I include <iostream>?? The docs say I get the new standard c++ libraries automatically if I include <iostream>.
I suspect that some of the other code I am including (not written by me) have includes such as stdio.h. Is there a way to work with this?
thanks
Bryan