<?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[Fsteam Probleme!]]></title><description><![CDATA[<p>Hallo!</p>
<p>Folgendes ich will eine Binäre-Datei einlesen folgender Code:</p>
<pre><code class="language-cpp">#include &lt;iostream&gt;
#include &lt;fstream&gt;
#include &lt;string&gt;
#include &quot;mapfile.h&quot;

void MapFile::readFile()
{
  fstream f;
  f.open(test.conf ,ios::binary);
  f.close;

}
</code></pre>
<p>Und ich bekomme immer die Error Meldung das fstream nicht in meinen Gültigkeitsbereich ist! Was hab ich hier vergessen?</p>
<p>mfg</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/239096/fsteam-probleme</link><generator>RSS for Node</generator><lastBuildDate>Tue, 22 Sep 2026 14:37:18 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/239096.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 19 Apr 2009 13:16:56 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Fsteam Probleme! on Sun, 19 Apr 2009 13:17:12 GMT]]></title><description><![CDATA[<p>Hallo!</p>
<p>Folgendes ich will eine Binäre-Datei einlesen folgender Code:</p>
<pre><code class="language-cpp">#include &lt;iostream&gt;
#include &lt;fstream&gt;
#include &lt;string&gt;
#include &quot;mapfile.h&quot;

void MapFile::readFile()
{
  fstream f;
  f.open(test.conf ,ios::binary);
  f.close;

}
</code></pre>
<p>Und ich bekomme immer die Error Meldung das fstream nicht in meinen Gültigkeitsbereich ist! Was hab ich hier vergessen?</p>
<p>mfg</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1698152</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1698152</guid><dc:creator><![CDATA[hanni6al]]></dc:creator><pubDate>Sun, 19 Apr 2009 13:17:12 GMT</pubDate></item><item><title><![CDATA[Reply to Fsteam Probleme! on Sun, 19 Apr 2009 13:38:59 GMT]]></title><description><![CDATA[<p>Wenn du einen fstream nimmst mußte noch ios::in bzw ios::out drin haben, dein ios::binary reicht nur wenn du nen ifstream nimmst weil da ios::in automatisch an ist.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1698163</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1698163</guid><dc:creator><![CDATA[Xebov]]></dc:creator><pubDate>Sun, 19 Apr 2009 13:38:59 GMT</pubDate></item><item><title><![CDATA[Reply to Fsteam Probleme! on Sun, 19 Apr 2009 13:39:18 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">void MapFile::readFile()
{
  std::fstream f;
  f.open(test.conf ,std::ios::binary);
  f.close;

}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1698164</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1698164</guid><dc:creator><![CDATA[drakon]]></dc:creator><pubDate>Sun, 19 Apr 2009 13:39:18 GMT</pubDate></item><item><title><![CDATA[Reply to Fsteam Probleme! on Sun, 19 Apr 2009 13:42:50 GMT]]></title><description><![CDATA[<p>Super thx!! <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face"
      title=":)"
      alt="🙂"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1698165</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1698165</guid><dc:creator><![CDATA[hanni6al]]></dc:creator><pubDate>Sun, 19 Apr 2009 13:42:50 GMT</pubDate></item></channel></rss>