<?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[namespace für fstream]]></title><description><![CDATA[<p>Ich möchte nicht den ganzen std namespace nutzen, sondern nur für die filestream sachen. using std::fstream; reicht scheinbar nicht aus (bei using std::list; usw. gehts aber so?)</p>
<p>Wie erreiche ich das?</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/121662/namespace-für-fstream</link><generator>RSS for Node</generator><lastBuildDate>Sat, 22 Aug 2026 19:18:30 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/121662.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 26 Sep 2005 12:29:54 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to namespace für fstream on Mon, 26 Sep 2005 12:29:54 GMT]]></title><description><![CDATA[<p>Ich möchte nicht den ganzen std namespace nutzen, sondern nur für die filestream sachen. using std::fstream; reicht scheinbar nicht aus (bei using std::list; usw. gehts aber so?)</p>
<p>Wie erreiche ich das?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/880390</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/880390</guid><dc:creator><![CDATA[huh?]]></dc:creator><pubDate>Mon, 26 Sep 2005 12:29:54 GMT</pubDate></item><item><title><![CDATA[Reply to namespace für fstream on Mon, 26 Sep 2005 12:41:39 GMT]]></title><description><![CDATA[<p>ich bin selbst noch neu in c++, aber vielleicht funktioniert ja folgender trick:</p>
<pre><code class="language-cpp">#include&lt;fstream&gt;

typedef std::fstream fstream;
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/880407</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/880407</guid><dc:creator><![CDATA[Konfusius]]></dc:creator><pubDate>Mon, 26 Sep 2005 12:41:39 GMT</pubDate></item><item><title><![CDATA[Reply to namespace für fstream on Mon, 26 Sep 2005 13:37:01 GMT]]></title><description><![CDATA[<p>du benutzt doch bestimmt ifstream und ofstream im code ,oder ?<br />
wenn dem so ist, sollte</p>
<pre><code class="language-cpp">#include&lt;fstream&gt;// hast du wohl eh 
using std::ifstream;
using std::ofstream;
</code></pre>
<p>reichen.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/880446</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/880446</guid><dc:creator><![CDATA[shapeless]]></dc:creator><pubDate>Mon, 26 Sep 2005 13:37:01 GMT</pubDate></item></channel></rss>