[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[List Home]
|
Re: [cdt-dev] Can not use <iostream> but <iostream.h>
|
- From: Steven Woody <narkewoody@xxxxxxxxx>
- Date: Fri, 22 May 2009 17:45:56 +0200
- Delivered-to: cdt-dev@eclipse.org
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=Vi9ljJ0FknWOikNyfxXg1mguk/9PDRLAgseybpVhBlk=; b=FDNCV62IpmNThOuE0PVZPZXTT0L0jzJ/7tx9LjwWnZFWubZjSDJk4qQDv4j5b+DOrD XSP1eQi4ciuwW9nybeFtPx3fEenqceUei55vIiWA/buzosKCGhJidUameKfLeIfP6Xlb 3JScb0YScAhMquV+Kg2JNYmurDHc5RYgEHaC0=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=i0piLg+MadFpQZ4Xuii8TJYQcqec8bKY2pWCrZV94+RvbMV9cZMruGu2b18bVYQMe4 36vJETfSiR5jvKVpBbhn9O6w25RJNBTZouSNVDV8lZeUhj41W3KkuOfaIKM/ejkliV/e eRYcibKM8AYk/mcwZ6V8bRI1zvVj1wIfZyewY=
On Fri, May 22, 2009 at 5:14 PM, Sergey Prigogin
<eclipse.sprigogin@xxxxxxxxx> wrote:
>
>
> On Fri, May 22, 2009 at 2:40 AM, Steven Woody <narkewoody@xxxxxxxxx> wrote:
>>
>> 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.
>
> iostream should be located
> in c:\cygwin\lib\gcc\i686-pc-cygwin\3.4.4\include\c++, not
> in c:\cygwin\lib\gcc\i686-pc-cygwin\3.4.4\include\c++/backward. Do you have
> it in the include path?
:) I think i get it, thanks!