<?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[Highscore]]></title><description><![CDATA[<p>hey @ all</p>
<p>also ich wollt mal wissen wie ich etwas in einer datei speichere z.b. integer</p>
<p>also mein projekt</p>
<p>ich gebe in int a eine 2 ein un der soll se mir dann in einer txt speichern.</p>
<p>beim nächsten neustart des proggrammes geb ich eine 4 ein un dann soll er prüfen ob die 4 größer ist als die 2 un sie dann oben hinschreiben.<br />
wenn das geht wäre schön:)<br />
aber mir reicht auch erstma am anfang das er nur etwas in txt schreibt</p>
<p>p.s programmier in command<br />
nicht oborentiert</p>
<p>mfg</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/198960/highscore</link><generator>RSS for Node</generator><lastBuildDate>Mon, 29 Jun 2026 19:04:48 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/198960.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 27 Nov 2007 14:24:21 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Highscore on Tue, 27 Nov 2007 14:24:21 GMT]]></title><description><![CDATA[<p>hey @ all</p>
<p>also ich wollt mal wissen wie ich etwas in einer datei speichere z.b. integer</p>
<p>also mein projekt</p>
<p>ich gebe in int a eine 2 ein un der soll se mir dann in einer txt speichern.</p>
<p>beim nächsten neustart des proggrammes geb ich eine 4 ein un dann soll er prüfen ob die 4 größer ist als die 2 un sie dann oben hinschreiben.<br />
wenn das geht wäre schön:)<br />
aber mir reicht auch erstma am anfang das er nur etwas in txt schreibt</p>
<p>p.s programmier in command<br />
nicht oborentiert</p>
<p>mfg</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1411043</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1411043</guid><dc:creator><![CDATA[MasterTobi]]></dc:creator><pubDate>Tue, 27 Nov 2007 14:24:21 GMT</pubDate></item><item><title><![CDATA[Reply to Highscore on Tue, 27 Nov 2007 17:44:11 GMT]]></title><description><![CDATA[<p>hab was gefunden</p>
<p>int a;<br />
a=10*32;<br />
ofstream f(&quot;hey.txt&quot;);<br />
f &lt;&lt; a &lt;&lt; '\n' ;</p>
<p>das geht ja wunderbar<br />
aber</p>
<p>wieder einlesen geht nicht</p>
<p>ifstream f(&quot;hey.txt&quot;);</p>
<p>int x;<br />
f &gt;&gt; x;</p>
<p>warum?</p>
<p>mfg</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1411172</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1411172</guid><dc:creator><![CDATA[MasterTobi]]></dc:creator><pubDate>Tue, 27 Nov 2007 17:44:11 GMT</pubDate></item><item><title><![CDATA[Reply to Highscore on Wed, 28 Nov 2007 06:55:00 GMT]]></title><description><![CDATA[<p>Was meinst du mit &quot;geht nicht&quot;? Liefert der Compiler einen Fehler (wenn ja, zeig mal etwas mehr Code)? Oder weigert sich das Programm, deine Datei zu öffnen und zu lesen (kann ich mir nicht vorstellen - außer es sucht im falschen Verzeichnis)?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1411366</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1411366</guid><dc:creator><![CDATA[CStoll]]></dc:creator><pubDate>Wed, 28 Nov 2007 06:55:00 GMT</pubDate></item><item><title><![CDATA[Reply to Highscore on Wed, 28 Nov 2007 10:51:43 GMT]]></title><description><![CDATA[<p>hey</p>
<p>ich habs herausgefunden un schon weiter gearbeitet</p>
<p>der code funtioniert ganz gut:)</p>
<pre><code>#include &lt;iostream.h&gt;
#include &lt;fstream.h&gt;
#include &lt;conio.h&gt;

int main()
{
int punkte;
char n,a,m,e;
cout&lt;&lt;&quot;name: &quot;;
cin&gt;&gt;n&gt;&gt;a&gt;&gt;m&gt;&gt;e;
punkte=100;
    {
            ofstream out(&quot;hey.txt&quot;,ios::app);
            out &lt;&lt; &quot;Spieler &quot;&lt;&lt;n&lt;&lt;a&lt;&lt;m&lt;&lt;e &lt;&lt; &quot; &quot;&lt;&lt;&quot;Erreichte % &quot;&lt;&lt; punkte&lt;&lt; '\n' ;//'\n' neue zeile
            fstream close(&quot;hey.txt&quot;);
    }

fstream open(&quot;hey.txt&quot;);
char x;
ifstream  in(&quot;hey.txt&quot;); 
cout&lt;&lt;&quot;\t\t\t\tHighscore&quot;&lt;&lt;endl;
cout&lt;&lt;endl;
while (in.get(x))
cout &lt;&lt; x;       
getch();

return 0;
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1411469</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1411469</guid><dc:creator><![CDATA[MasterTobi]]></dc:creator><pubDate>Wed, 28 Nov 2007 10:51:43 GMT</pubDate></item><item><title><![CDATA[Reply to Highscore on Wed, 28 Nov 2007 10:58:21 GMT]]></title><description><![CDATA[<p>MasterTobi schrieb:</p>
<blockquote>
<pre><code>char n,a,m,e;
cout&lt;&lt;&quot;name: &quot;;
cin&gt;&gt;n&gt;&gt;a&gt;&gt;m&gt;&gt;e;
</code></pre>
</blockquote>
<p><img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f62e.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--face_with_open_mouth"
      title=":open_mouth:"
      alt="😮"
    /> Was soll denn das sein? Hast du schonmal den Begriff &quot;String&quot; gehört?</p>
<p>(und das &quot;fstream close(&quot;hey.txt&quot;);&quot; ist auch sinnlos - korrekt müsste es lauten &quot;out.close();&quot;)</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1411476</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1411476</guid><dc:creator><![CDATA[CStoll]]></dc:creator><pubDate>Wed, 28 Nov 2007 10:58:21 GMT</pubDate></item><item><title><![CDATA[Reply to Highscore on Wed, 28 Nov 2007 11:28:27 GMT]]></title><description><![CDATA[<p>fstream close(&quot;hey.txt&quot;)<br />
damit ging es halt:)</p>
<p>un des mit string funzt irgednwie nicht</p>
<p>wie funktioniert das den mit string?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1411490</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1411490</guid><dc:creator><![CDATA[MasterTobi]]></dc:creator><pubDate>Wed, 28 Nov 2007 11:28:27 GMT</pubDate></item><item><title><![CDATA[Reply to Highscore on Wed, 28 Nov 2007 11:41:35 GMT]]></title><description><![CDATA[<p>MasterTobi schrieb:</p>
<blockquote>
<p>fstream close(&quot;hey.txt&quot;)<br />
damit ging es halt:)</p>
</blockquote>
<p>Was ging damit? Du versuchst, die bereits geöffnete Datei nochmal neu zu öffnen (was je nach Bedingungen tatsächlich funktionieren kann, aber vermutlich in einem Fehler endet). Erst der Dtor des ofstream schließt die Datei - und der wird aufgerufen, wenn sie (in Zeile 16) aus dem Scope fällt.</p>
<blockquote>
<p>un des mit string funzt irgednwie nicht</p>
<p>wie funktioniert das den mit string?</p>
</blockquote>
<p>Was hast du denn probiert?</p>
<p>richtig müsste es so aussehen:</p>
<pre><code class="language-cpp">std::string name;
cin&gt;&gt;name;
...
out &lt;&lt; &quot;Spieler &quot;&lt;&lt;name &lt;&lt; &quot; &quot;&lt;&lt;&quot;Erreichte % &quot;&lt;&lt; punkte&lt;&lt; '\n' ;
</code></pre>
<p>(wobei ich in der Highscore-Datei nur die Namen und Punktzahlen speichern würde)</p>
<p>PS: &lt;fstream.h&gt; und &lt;iostream.h&gt; sind extremst veraltet - korrekt heißen die Header &lt;fstream&gt; und &lt;iostream&gt;. (außerdem brauchst du noch &lt;string&gt; für die Klasse std::string)</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1411494</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1411494</guid><dc:creator><![CDATA[CStoll]]></dc:creator><pubDate>Wed, 28 Nov 2007 11:41:35 GMT</pubDate></item><item><title><![CDATA[Reply to Highscore on Wed, 28 Nov 2007 11:54:08 GMT]]></title><description><![CDATA[<p>ok probier ich ma</p>
<p>p.s ....h sind nicht veraltet</p>
<p>hab nur keine lust</p>
<p>#include &lt;iostream&gt;<br />
used namespace std</p>
<p>oder so zu schrieben</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1411500</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1411500</guid><dc:creator><![CDATA[MasterTobi]]></dc:creator><pubDate>Wed, 28 Nov 2007 11:54:08 GMT</pubDate></item><item><title><![CDATA[Reply to Highscore on Wed, 28 Nov 2007 11:56:39 GMT]]></title><description><![CDATA[<p>MasterTobi schrieb:</p>
<blockquote>
<p>p.s ....h sind nicht veraltet</p>
</blockquote>
<p>Doch, sind sie - die offiziellen C++ Standardheader haben keine Dateiendung. (iostream.h existiert noch auf einigen System und enthält eine Prä-Ansi Version der IOStreams cin/cout, fstream.h ist mir bisher noch nie untergekommen)</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1411501</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1411501</guid><dc:creator><![CDATA[CStoll]]></dc:creator><pubDate>Wed, 28 Nov 2007 11:56:39 GMT</pubDate></item><item><title><![CDATA[Reply to Highscore on Wed, 28 Nov 2007 11:59:37 GMT]]></title><description><![CDATA[<p>cool danke das mit dem string</p>
<p>mein prob war immer:<br />
#include &lt;string.h&gt;<br />
string name;</p>
<p>statt<br />
...<br />
std::string name;</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1411505</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1411505</guid><dc:creator><![CDATA[MasterTobi]]></dc:creator><pubDate>Wed, 28 Nov 2007 11:59:37 GMT</pubDate></item><item><title><![CDATA[Reply to Highscore on Wed, 28 Nov 2007 12:06:57 GMT]]></title><description><![CDATA[<p>Ja, das kommt heraus, wenn man nicht die korrekten Header einbindet <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /> Im Gegensatz zu &lt;fstream.h&gt; existiert der Header &lt;string.h&gt; nämlich tatsächlich - hat aber gar nichts mit der C++ Klasse (std::)string zu tun. Die &lt;string.h&gt; enthält ein ganzes Sortiment an Funktionen zur Verarbeitung von C-Strings (nullterminierte char-Arrays), die C++ von C geerbt hat.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1411509</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1411509</guid><dc:creator><![CDATA[CStoll]]></dc:creator><pubDate>Wed, 28 Nov 2007 12:06:57 GMT</pubDate></item><item><title><![CDATA[Reply to Highscore on Wed, 28 Nov 2007 12:08:34 GMT]]></title><description><![CDATA[<p>ah ok</p>
<p>ich danke dir</p>
<p>hab noch eine frage kann man irgendwie die text datei sotieren?</p>
<p>ich find einfach nix dazu:(</p>
<p>mfg</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1411511</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1411511</guid><dc:creator><![CDATA[MasterTobi]]></dc:creator><pubDate>Wed, 28 Nov 2007 12:08:34 GMT</pubDate></item><item><title><![CDATA[Reply to Highscore on Wed, 28 Nov 2007 12:10:29 GMT]]></title><description><![CDATA[<p>Die Datei nicht - die wird so geschrieben, wie die Daten reinkommen. Aber die Daten, die du im Programm verwendest, kannst du sortieren - für dich am einfachsten wäre es wohl, die Paare aus Name und Punktzahl in einer map&lt;int,string&gt; zu speichern.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1411513</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1411513</guid><dc:creator><![CDATA[CStoll]]></dc:creator><pubDate>Wed, 28 Nov 2007 12:10:29 GMT</pubDate></item><item><title><![CDATA[Reply to Highscore on Wed, 28 Nov 2007 12:13:02 GMT]]></title><description><![CDATA[<p>naja bin noch so noob sag ich ma <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>
<p>also die daten die eingelesen werden aus der text datei</p>
<p>kann man sotieren, so hab ich es jetzt vertanden</p>
<p>was ich nicht verstehe ist map int, string</p>
<p>sry</p>
<p>mfg</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1411515</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1411515</guid><dc:creator><![CDATA[MasterTobi]]></dc:creator><pubDate>Wed, 28 Nov 2007 12:13:02 GMT</pubDate></item><item><title><![CDATA[Reply to Highscore on Wed, 28 Nov 2007 12:17:44 GMT]]></title><description><![CDATA[<p>Schau dir mal ein gutes C++ Tutorial an - oder meinen Magazinartikel &quot;Aufbau der STL&quot;, dort findest du auch eine Erklärung zu map&lt;&gt;.</p>
<p>(in Kurzfassung: map&lt;&gt; ist eine Sammlung von Wertepaaren - die sortiert nach dem ersten Wert verwaltet werden können)</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1411518</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1411518</guid><dc:creator><![CDATA[CStoll]]></dc:creator><pubDate>Wed, 28 Nov 2007 12:17:44 GMT</pubDate></item><item><title><![CDATA[Reply to Highscore on Wed, 28 Nov 2007 12:19:26 GMT]]></title><description><![CDATA[<p>ok danke mach ich mal <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>
<p>mfg</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1411519</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1411519</guid><dc:creator><![CDATA[MasterTobi]]></dc:creator><pubDate>Wed, 28 Nov 2007 12:19:26 GMT</pubDate></item><item><title><![CDATA[Reply to Highscore on Wed, 28 Nov 2007 16:40:39 GMT]]></title><description><![CDATA[<p>irgendwie raff ich das alles net.<br />
kannst du mir ein tipp geben?</p>
<p>ich les den inhalt der txt ein in &quot;x&quot; un gebe sie aus.<br />
müsst ich des dann alles mit arrays machen?</p>
<p>mfg</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1411722</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1411722</guid><dc:creator><![CDATA[MasterTobi]]></dc:creator><pubDate>Wed, 28 Nov 2007 16:40:39 GMT</pubDate></item><item><title><![CDATA[Reply to Highscore on Thu, 29 Nov 2007 07:20:22 GMT]]></title><description><![CDATA[<p>Wie hast du denn deine Highscore-Datei aufgebaut? (ich würde das oben verwendete &quot;X hat Y Punkte erreicht&quot; abkürzen zu einer Liste mit X und Y)</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1411986</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1411986</guid><dc:creator><![CDATA[CStoll]]></dc:creator><pubDate>Thu, 29 Nov 2007 07:20:22 GMT</pubDate></item><item><title><![CDATA[Reply to Highscore on Thu, 29 Nov 2007 14:57:09 GMT]]></title><description><![CDATA[<p>also mein hihgscore is nur :</p>
<pre><code>//highscore anfang
            {
            ofstream out(&quot;highscore.dll&quot;,ios::app);
            out &lt;&lt; &quot;Spieler: &quot;&lt;&lt;name&lt;&lt;&quot; &quot;&lt;&lt;nachname&lt;&lt; &quot;, &quot;&lt;&lt;&quot;Erreichte %: &quot;&lt;&lt; dummheit&lt;&lt;&quot;, &quot;&lt;&lt;&quot;Verf&quot;&lt;&lt;ue&lt;&lt;&quot;gbare Joker: &quot;&lt;&lt;joker&lt;&lt; '\n' ;//'\n' neue zeile
            fstream close(&quot;highscore.dll&quot;);
             }

            fstream open(&quot;highscore.dll&quot;);
            char x;
            ifstream  in(&quot;highscore.dll&quot;); 
            cout&lt;&lt;&quot;\t\t\t\tHighscore&quot;&lt;&lt;endl;
            cout&lt;&lt;endl;
            while (in.get(x))
            cout &lt;&lt; x;       
            //highscore ende
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1412344</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1412344</guid><dc:creator><![CDATA[MasterTobi]]></dc:creator><pubDate>Thu, 29 Nov 2007 14:57:09 GMT</pubDate></item><item><title><![CDATA[Reply to Highscore on Thu, 29 Nov 2007 15:02:21 GMT]]></title><description><![CDATA[<p>Wie gesagt, ich würde den gesamten Rattenschwanz in der Datei weglassen und nur den Namen und die Punkte speichern:</p>
<pre><code class="language-cpp">//Ausgabe:
out&lt;&lt;name&lt;&lt;' '&lt;&lt;dummheit&lt;&lt;' '&lt;&lt;joker&lt;&lt;endl;

//Einlesen:
in&gt;&gt;name&gt;&gt;dummheit&gt;&gt;joker;
cout &lt;&lt; &quot;Spieler: &quot;&lt;&lt;name&lt;&lt;&quot; &quot;&lt;&lt;nachname&lt;&lt; &quot;, &quot;&lt;&lt;&quot;Erreichte %: &quot;&lt;&lt; dummheit&lt;&lt;&quot;, &quot;&lt;&lt;&quot;Verf&quot;&lt;&lt;ue&lt;&lt;&quot;gbare Joker: &quot;&lt;&lt;joker&lt;&lt;endl;
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1412348</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1412348</guid><dc:creator><![CDATA[CStoll]]></dc:creator><pubDate>Thu, 29 Nov 2007 15:02:21 GMT</pubDate></item><item><title><![CDATA[Reply to Highscore on Thu, 29 Nov 2007 15:04:34 GMT]]></title><description><![CDATA[<p>ich hatte des ma so probiert aber hat nich gefunzt ich werd ma deinen code benutzen</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1412351</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1412351</guid><dc:creator><![CDATA[MasterTobi]]></dc:creator><pubDate>Thu, 29 Nov 2007 15:04:34 GMT</pubDate></item><item><title><![CDATA[Reply to Highscore on Thu, 29 Nov 2007 15:11:20 GMT]]></title><description><![CDATA[<p>ok danke er geht:)</p>
<p>so un wie schaff ich es jetzt &quot;dummheit&quot; zu sotieren</p>
<p>mfg</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1412358</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1412358</guid><dc:creator><![CDATA[MasterTobi]]></dc:creator><pubDate>Thu, 29 Nov 2007 15:11:20 GMT</pubDate></item><item><title><![CDATA[Reply to Highscore on Thu, 29 Nov 2007 15:20:26 GMT]]></title><description><![CDATA[<p>Du fasst alle drei Werte zu einer struct/class zusammen, spendierst ihr einen Vergleichsoperator und packst alle Werte in eine set&lt;&gt;:</p>
<pre><code class="language-cpp">struct entry
{
  string name;
  int dummheit,joker;
};

bool operator&lt;(const entry&amp; l, const entry&amp; r)
{ return l.dummheit&lt;r.dummheit; }

...
set&lt;entry&gt; scores;
entry val;
while(infile&gt;&gt;val.name&gt;&gt;val.dummheit&gt;&gt;val.joker)
  scores.insert(val);

for(set&lt;entry&gt;::iterator pos=scores.begin();pos!=scores.end();++pos)
  cout&lt;&lt;&quot;Spieler: &quot;&lt;&lt;pos-&gt;name&quot;, &quot;&lt;&lt;&quot;Erreichte %: &quot;&lt;&lt; pos-&gt;dummheit&lt;&lt;&quot;, &quot;&lt;&lt;&quot;Verf&quot;&lt;&lt;ue&lt;&lt;&quot;gbare Joker: &quot;&lt;&lt;pos-&gt;joker&lt;&lt;endl;
</code></pre>
<p>(die nächste Verbesserung wäre es noch, aus entry eine vollwertige Klasse zu machen, die sich selbst um Einlesen und Ausgeben kümmert)</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1412375</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1412375</guid><dc:creator><![CDATA[CStoll]]></dc:creator><pubDate>Thu, 29 Nov 2007 15:20:26 GMT</pubDate></item><item><title><![CDATA[Reply to Highscore on Sat, 01 Dec 2007 06:50:18 GMT]]></title><description><![CDATA[<p>Aber wenn die Highscore erst mal fertig ist, dann ist der Rest vom Spiel ganz einfach. <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f576.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--sunglasses"
      title=":sunglasses:"
      alt="🕶"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1413231</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1413231</guid><dc:creator><![CDATA[the_]]></dc:creator><pubDate>Sat, 01 Dec 2007 06:50:18 GMT</pubDate></item></channel></rss>