Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-dev] Can not use <iostream> but <iostream.h>

Hi,

I am using Eclipse Cpp Galileo M7. After I created a project from the
HelloWorld template c++ project, i then inserted an inclusion line
    #include <iostream>
in the main cpp file.  But this created a red warning line of
"Unresolved inclusion".   I can clear the warning only by write it as:
    #include <iostream.h>
but this is not a correct method according to c++ language!

What's wrong with my operations? Thanks.


ps. I had set the inclusion directory to include
c:\cygwin\lib\gcc\i686-pc-cygwin\3.4.4\include\c++\backward

-- 
narke


Back to the top