<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[ifstream is not member of std?]]></title><description><![CDATA[<p>folgendes will VS7 nicht kompilieren:</p>
<pre><code class="language-cpp">#include &lt;fstream&gt;
.
.
.
void CrandomVehDlg::OnBnClickedButton1()
{
	using namespace std;

	ifstream fin( &quot;H:/SCANER_CFG_214/DEFAULT/data/traffic/prevention_autoroute_norm.trf&quot; );
.
.
.
}
</code></pre>
<p>Was ist los?</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/153477/ifstream-is-not-member-of-std</link><generator>RSS for Node</generator><lastBuildDate>Fri, 24 Jul 2026 08:28:07 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/153477.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 17 Jul 2006 13:42:44 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to ifstream is not member of std? on Mon, 17 Jul 2006 13:42:44 GMT]]></title><description><![CDATA[<p>folgendes will VS7 nicht kompilieren:</p>
<pre><code class="language-cpp">#include &lt;fstream&gt;
.
.
.
void CrandomVehDlg::OnBnClickedButton1()
{
	using namespace std;

	ifstream fin( &quot;H:/SCANER_CFG_214/DEFAULT/data/traffic/prevention_autoroute_norm.trf&quot; );
.
.
.
}
</code></pre>
<p>Was ist los?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1099200</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1099200</guid><dc:creator><![CDATA[aiv]]></dc:creator><pubDate>Mon, 17 Jul 2006 13:42:44 GMT</pubDate></item><item><title><![CDATA[Reply to ifstream is not member of std? on Mon, 17 Jul 2006 14:31:24 GMT]]></title><description><![CDATA[<p>Hallo</p>
<p>Was kommt für eine Fehlermeldung? Probier doch mal noch iostream miteinzubinden.</p>
<p>chrische</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1099248</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1099248</guid><dc:creator><![CDATA[[[global:guest]]]]></dc:creator><pubDate>Mon, 17 Jul 2006 14:31:24 GMT</pubDate></item><item><title><![CDATA[Reply to ifstream is not member of std? on Mon, 17 Jul 2006 14:31:43 GMT]]></title><description><![CDATA[<p>Könntest ja mal die Fehlermeldung dazu posten, daran kann man mehr erkennen als an etwas herausgerissenem Quelltext.</p>
<p>Ansonsten könntest du folgendes probieren:</p>
<pre><code class="language-cpp">ifstream fin;
fin.open (&quot;H:/...&quot;);
</code></pre>
<p>Gruß<br />
Neron</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1099249</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1099249</guid><dc:creator><![CDATA[Neron17]]></dc:creator><pubDate>Mon, 17 Jul 2006 14:31:43 GMT</pubDate></item></channel></rss>