<?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[Brauche Hilfe beim Schreiben einer Forward Declaration]]></title><description><![CDATA[<p>Hallo</p>
<pre><code class="language-cpp">void __fastcall TForm1::Button2Click(TObject *Sender)
{
  ListBox1-&gt;Clear();
  int* zahlenfeld = new int[10];
  zahlenfeld[0] = StrToInt(Form1-&gt;Edit1-&gt;Text);
  zahlenfeld[1] = StrToInt(Form1-&gt;Edit2-&gt;Text);
  zahlenfeld[2] = StrToInt(Form1-&gt;Edit3-&gt;Text);
  zahlenfeld[3] = StrToInt(Form1-&gt;Edit4-&gt;Text);
  zahlenfeld[4] = StrToInt(Form1-&gt;Edit5-&gt;Text);
  zahlenfeld[5] = StrToInt(Form1-&gt;Edit6-&gt;Text);
  zahlenfeld[6] = StrToInt(Form1-&gt;Edit7-&gt;Text);
  zahlenfeld[7] = StrToInt(Form1-&gt;Edit8-&gt;Text);
  zahlenfeld[8] = StrToInt(Form1-&gt;Edit9-&gt;Text);
  zahlenfeld[9] = StrToInt(Form1-&gt;Edit10-&gt;Text);

  eigener_sortieralgorithmus(zahlenfeld,10);//Aufruf der Sortierfunktion

  for(int i=0;i&lt;10;++i)
  {
  ListBox1-&gt;Items-&gt;Add(IntToStr(zahlenfeld [10]));
  }
}

template &lt;typename y&gt;
void eigener_sortieralgorithmus(y*&amp; zahlenfeld, const std::size_t&amp; size)
{
    bool redo = false;
    do {
          redo = false;
               for (std::size_t i = 0; i &lt; (size - 1); ++i)
   if (zahlenfeld[i] &gt; zahlenfeld[i + 1])
{
        std::swap&lt;y&gt;(zahlenfeld[i], zahlenfeld[i + 1]);
        redo = true;
        }
        } 
while (redo == true); 
}
</code></pre>
<p>Da ich noch ein ANFÄNGER bin habe ich leider noch nicht viel Erfahrung und weiß deswegen auch nicht wie ich Forward Declaration, um den Fehler zu beheben, schreiben muss!!</p>
<p>C++ Fehler:Aufruf der undefinierten Funktion 'eigener_sortieralgorithmus'</p>
<p>U.A.w.g.</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/182113/brauche-hilfe-beim-schreiben-einer-forward-declaration</link><generator>RSS for Node</generator><lastBuildDate>Tue, 22 Sep 2026 17:21:44 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/182113.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 21 May 2007 16:02:15 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Brauche Hilfe beim Schreiben einer Forward Declaration on Mon, 21 May 2007 16:02:15 GMT]]></title><description><![CDATA[<p>Hallo</p>
<pre><code class="language-cpp">void __fastcall TForm1::Button2Click(TObject *Sender)
{
  ListBox1-&gt;Clear();
  int* zahlenfeld = new int[10];
  zahlenfeld[0] = StrToInt(Form1-&gt;Edit1-&gt;Text);
  zahlenfeld[1] = StrToInt(Form1-&gt;Edit2-&gt;Text);
  zahlenfeld[2] = StrToInt(Form1-&gt;Edit3-&gt;Text);
  zahlenfeld[3] = StrToInt(Form1-&gt;Edit4-&gt;Text);
  zahlenfeld[4] = StrToInt(Form1-&gt;Edit5-&gt;Text);
  zahlenfeld[5] = StrToInt(Form1-&gt;Edit6-&gt;Text);
  zahlenfeld[6] = StrToInt(Form1-&gt;Edit7-&gt;Text);
  zahlenfeld[7] = StrToInt(Form1-&gt;Edit8-&gt;Text);
  zahlenfeld[8] = StrToInt(Form1-&gt;Edit9-&gt;Text);
  zahlenfeld[9] = StrToInt(Form1-&gt;Edit10-&gt;Text);

  eigener_sortieralgorithmus(zahlenfeld,10);//Aufruf der Sortierfunktion

  for(int i=0;i&lt;10;++i)
  {
  ListBox1-&gt;Items-&gt;Add(IntToStr(zahlenfeld [10]));
  }
}

template &lt;typename y&gt;
void eigener_sortieralgorithmus(y*&amp; zahlenfeld, const std::size_t&amp; size)
{
    bool redo = false;
    do {
          redo = false;
               for (std::size_t i = 0; i &lt; (size - 1); ++i)
   if (zahlenfeld[i] &gt; zahlenfeld[i + 1])
{
        std::swap&lt;y&gt;(zahlenfeld[i], zahlenfeld[i + 1]);
        redo = true;
        }
        } 
while (redo == true); 
}
</code></pre>
<p>Da ich noch ein ANFÄNGER bin habe ich leider noch nicht viel Erfahrung und weiß deswegen auch nicht wie ich Forward Declaration, um den Fehler zu beheben, schreiben muss!!</p>
<p>C++ Fehler:Aufruf der undefinierten Funktion 'eigener_sortieralgorithmus'</p>
<p>U.A.w.g.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1289232</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1289232</guid><dc:creator><![CDATA[Aicde]]></dc:creator><pubDate>Mon, 21 May 2007 16:02:15 GMT</pubDate></item><item><title><![CDATA[Reply to Brauche Hilfe beim Schreiben einer Forward Declaration on Mon, 21 May 2007 16:08:52 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">template &lt;typename y&gt;
void eigener_sortieralgorithmus(y*&amp; zahlenfeld, const std::size_t&amp; size);  // das ist die forward-deklaration, weil ohne anweisungsrumpf

void __fastcall TForm1::Button2Click(TObject *Sender)
{
  // [...]
};  // &lt;-- bin nicht ganz sicher, aber evtl. muss hier auch ein ; hinter

template &lt;typename y&gt;
void eigener_sortieralgorithmus(y*&amp; zahlenfeld, const std::size_t&amp; size)
{
   //[...]
} // &lt;-- siehe oben
</code></pre>
<p>btw: ist es wirklich beabsichtigt, dass du eine Referenz auf einen Pointer uebergibst? Scheint mir irgendwie doppelt gemoppelt... Es sei denn, du moechtest mit der Funktion auch den Pointer selber aendern.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1289238</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1289238</guid><dc:creator><![CDATA[pumuckl]]></dc:creator><pubDate>Mon, 21 May 2007 16:08:52 GMT</pubDate></item><item><title><![CDATA[Reply to Brauche Hilfe beim Schreiben einer Forward Declaration on Mon, 21 May 2007 16:11:40 GMT]]></title><description><![CDATA[<p>pumuckl schrieb:</p>
<blockquote>
<p>bin nicht ganz sicher, aber evtl. muss hier auch ein ; hinter</p>
</blockquote>
<p>Ist doch eine ganz normale Funktion das braucht man doch nur am Ende einer Klasse.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1289241</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1289241</guid><dc:creator><![CDATA[kaffee]]></dc:creator><pubDate>Mon, 21 May 2007 16:11:40 GMT</pubDate></item><item><title><![CDATA[Reply to Brauche Hilfe beim Schreiben einer Forward Declaration on Mon, 21 May 2007 16:14:47 GMT]]></title><description><![CDATA[<p>kaffee schrieb:</p>
<blockquote>
<p>pumuckl schrieb:</p>
<blockquote>
<p>bin nicht ganz sicher, aber evtl. muss hier auch ein ; hinter</p>
</blockquote>
<p>Ist doch eine ganz normale Funktion das braucht man doch nur am Ende einer Klasse.</p>
</blockquote>
<p>k danke... war zwei Jahre abstinent und kann mich an solche Einzelheiten nur erinnern wenn mich der Compiler mit der Nase drauf stoesst - tut er in diesem Fall aber nicht <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="😉"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1289242</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1289242</guid><dc:creator><![CDATA[pumuckl]]></dc:creator><pubDate>Mon, 21 May 2007 16:14:47 GMT</pubDate></item><item><title><![CDATA[Reply to Brauche Hilfe beim Schreiben einer Forward Declaration on Mon, 21 May 2007 16:15:29 GMT]]></title><description><![CDATA[<p>Funtioniert nicht ganz weil ich jetzt zwei neue fehler habe:</p>
<p>beide bei zeile 33</p>
<p>1.C++ Fehler:'swap' ist kein Element von'std'<br />
2.C++ Fehler:Ungültige Verwendung von typedef 'y'</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1289244</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1289244</guid><dc:creator><![CDATA[Aicde]]></dc:creator><pubDate>Mon, 21 May 2007 16:15:29 GMT</pubDate></item><item><title><![CDATA[Reply to Brauche Hilfe beim Schreiben einer Forward Declaration on Mon, 21 May 2007 16:19:36 GMT]]></title><description><![CDATA[<p>wenn du std weglässt?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1289247</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1289247</guid><dc:creator><![CDATA[kaffee]]></dc:creator><pubDate>Mon, 21 May 2007 16:19:36 GMT</pubDate></item><item><title><![CDATA[Reply to Brauche Hilfe beim Schreiben einer Forward Declaration on Mon, 21 May 2007 16:31:58 GMT]]></title><description><![CDATA[<p>Hast Du &lt;algorithm&gt; includiert?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1289258</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1289258</guid><dc:creator><![CDATA[LordJaxom]]></dc:creator><pubDate>Mon, 21 May 2007 16:31:58 GMT</pubDate></item><item><title><![CDATA[Reply to Brauche Hilfe beim Schreiben einer Forward Declaration on Mon, 21 May 2007 16:50:28 GMT]]></title><description><![CDATA[<p>Hallo</p>
<p>#include &lt;algorithm&gt; hab ich reingeschrieben, dann läuft es, aber die listbox gibt mir jetzt nicht die sortierten zahlen in reihenfolge aus sondern einen zahlenwert also z.B:9069840<br />
was hat das zu bedeuten????</p>
<p>U.A.w.g.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1289267</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1289267</guid><dc:creator><![CDATA[Aicde]]></dc:creator><pubDate>Mon, 21 May 2007 16:50:28 GMT</pubDate></item><item><title><![CDATA[Reply to Brauche Hilfe beim Schreiben einer Forward Declaration on Mon, 21 May 2007 22:11:59 GMT]]></title><description><![CDATA[<p>Oh Mann...</p>
<pre><code class="language-cpp">//ListBox1-&gt;Items-&gt;Add(IntToStr(zahlenfeld [10])); 
ListBox1-&gt;Items-&gt;Add(IntToStr(zahlenfeld [i]));
</code></pre>
<p>Und: gewöhn dir diese sinnlosen Referenzen ab! Ein &quot;int*&amp;&quot; (wo eigentlich sonst sein sollte) OMG. &quot;const size_t&amp;&quot; pf. Eieiei...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1289485</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1289485</guid><dc:creator><![CDATA[hustbaer]]></dc:creator><pubDate>Mon, 21 May 2007 22:11:59 GMT</pubDate></item><item><title><![CDATA[Reply to Brauche Hilfe beim Schreiben einer Forward Declaration on Tue, 22 May 2007 13:02:27 GMT]]></title><description><![CDATA[<p>Hallo</p>
<p>mit ListBox1-&gt;Items-&gt;Add(IntToStr(zahlenfeld [i]));<br />
bekomm ich den C++ Fehler: Undefiniertes Symbol 'i'</p>
<p>U.A.w.g.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1289918</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1289918</guid><dc:creator><![CDATA[Aicde]]></dc:creator><pubDate>Tue, 22 May 2007 13:02:27 GMT</pubDate></item><item><title><![CDATA[Reply to Brauche Hilfe beim Schreiben einer Forward Declaration on Tue, 22 May 2007 13:14:44 GMT]]></title><description><![CDATA[<p>Hallo</p>
<p>Was ist ein C++-Fehler?</p>
<p>chrische</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1289932</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1289932</guid><dc:creator><![CDATA[[[global:guest]]]]></dc:creator><pubDate>Tue, 22 May 2007 13:14:44 GMT</pubDate></item><item><title><![CDATA[Reply to Brauche Hilfe beim Schreiben einer Forward Declaration on Tue, 22 May 2007 13:20:36 GMT]]></title><description><![CDATA[<p>ein C++ Fehler ist das was der compiler mir als meldung annzeigt!!!!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1289935</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1289935</guid><dc:creator><![CDATA[Aicde]]></dc:creator><pubDate>Tue, 22 May 2007 13:20:36 GMT</pubDate></item><item><title><![CDATA[Reply to Brauche Hilfe beim Schreiben einer Forward Declaration on Tue, 22 May 2007 13:24:25 GMT]]></title><description><![CDATA[<p>Aicde schrieb:</p>
<blockquote>
<p>Hallo</p>
<p>mit ListBox1-&gt;Items-&gt;Add(IntToStr(zahlenfeld [i]));<br />
bekomm ich den C++ Fehler: Undefiniertes Symbol 'i'</p>
<p>U.A.w.g.</p>
</blockquote>
<p>Dann definiere doch i ... soll vermutlich ein int sein, oder ?</p>
<p>Gruß,</p>
<p>Simon2.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1289938</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1289938</guid><dc:creator><![CDATA[Simon2]]></dc:creator><pubDate>Tue, 22 May 2007 13:24:25 GMT</pubDate></item><item><title><![CDATA[Reply to Brauche Hilfe beim Schreiben einer Forward Declaration on Tue, 22 May 2007 13:31:59 GMT]]></title><description><![CDATA[<p>hallo</p>
<p>nein [i] steht nicht für int sondern für eine variable des zahlenfelde[i] i ist die Größe des zahlenfeldes!!</p>
<p>U.A.w.g.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1289943</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1289943</guid><dc:creator><![CDATA[Aicde]]></dc:creator><pubDate>Tue, 22 May 2007 13:31:59 GMT</pubDate></item><item><title><![CDATA[Reply to Brauche Hilfe beim Schreiben einer Forward Declaration on Tue, 22 May 2007 13:51:20 GMT]]></title><description><![CDATA[<p>Hallo</p>
<p>Ich dachte mir schon wofür c++-fehler steht, aber ich hatte das so noch nicht gehört.</p>
<p>Das i nicht für int steht ist klar, aber i ist eventuell vom Datentyp int. Wenn es i nicht gibt, musst du es eben in den Quellcode schreiben oder direkt auf die einzelnen Variablen deines Feldes zugreifen.</p>
<p>chrische</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1289948</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1289948</guid><dc:creator><![CDATA[[[global:guest]]]]></dc:creator><pubDate>Tue, 22 May 2007 13:51:20 GMT</pubDate></item><item><title><![CDATA[Reply to Brauche Hilfe beim Schreiben einer Forward Declaration on Tue, 22 May 2007 15:38:49 GMT]]></title><description><![CDATA[<p>Hallo,</p>
<p>Es war doch diese Zeile hier gemeint.</p>
<pre><code class="language-cpp">for(int i=0;i&lt;10;++i)
  {
  ListBox1-&gt;Items-&gt;Add(IntToStr(zahlenfeld [10])); //hier kommt statt der 10 das i rein !
  }
</code></pre>
<p>da gibt es doch ein i. Es sollte da keinen Fehler geben. Wenn doch, wäre es gut, wenn du uns deinen aktuellen Quelltext nochmal zeigst.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1290009</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1290009</guid><dc:creator><![CDATA[Braunstein]]></dc:creator><pubDate>Tue, 22 May 2007 15:38:49 GMT</pubDate></item><item><title><![CDATA[Reply to Brauche Hilfe beim Schreiben einer Forward Declaration on Wed, 23 May 2007 06:32:47 GMT]]></title><description><![CDATA[<p>Aicde schrieb:</p>
<blockquote>
<p>hallo</p>
<p>nein [i] steht nicht für int sondern für eine variable des zahlenfelde[i] i ist die Größe des zahlenfeldes!!</p>
<p>U.A.w.g.</p>
</blockquote>
<p><img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f644.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--face_with_rolling_eyes"
      title=":rolling_eyes:"
      alt="🙄"
    /><br />
Also ich weiß nicht, ob Du schon reif bist für templates... <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="😉"
    /></p>
<p>Klar, i ist eine Variable .... und welchen Typ soll die haben ? Und wo teilst Du das dem Compiler mit ? (Letzteres nennt man &quot;Definition von i&quot;)</p>
<p>Gruß,</p>
<p>Simon2.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1290318</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1290318</guid><dc:creator><![CDATA[Simon2]]></dc:creator><pubDate>Wed, 23 May 2007 06:32:47 GMT</pubDate></item><item><title><![CDATA[Reply to Brauche Hilfe beim Schreiben einer Forward Declaration on Thu, 24 May 2007 13:19:22 GMT]]></title><description><![CDATA[<p>Hallo</p>
<pre><code class="language-cpp">for(int i=0;i&lt;10;++i)
  {
  ListBox1-&gt;Items-&gt;Add(IntToStr(zahlenfeld [1])); 
  ListBox1-&gt;Items-&gt;Add(IntToStr(zahlenfeld [2]));
  ListBox1-&gt;Items-&gt;Add(IntToStr(zahlenfeld [3]));
  ListBox1-&gt;Items-&gt;Add(IntToStr(zahlenfeld [4]));
  ListBox1-&gt;Items-&gt;Add(IntToStr(zahlenfeld [5]));
  ListBox1-&gt;Items-&gt;Add(IntToStr(zahlenfeld [6]));
  ListBox1-&gt;Items-&gt;Add(IntToStr(zahlenfeld [7]));
  ListBox1-&gt;Items-&gt;Add(IntToStr(zahlenfeld [8]));
  ListBox1-&gt;Items-&gt;Add(IntToStr(zahlenfeld [9]));
  ListBox1-&gt;Items-&gt;Add(IntToStr(zahlenfeld [10]));
  }
</code></pre>
<p>so ist gut man muss ja alle Stellen des Zahlenfeldes ausgeben lassen</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1291410</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1291410</guid><dc:creator><![CDATA[Aicde]]></dc:creator><pubDate>Thu, 24 May 2007 13:19:22 GMT</pubDate></item><item><title><![CDATA[Reply to Brauche Hilfe beim Schreiben einer Forward Declaration on Thu, 24 May 2007 13:26:40 GMT]]></title><description><![CDATA[<p>Hast du das da auch ausprobiert?<br />
Mal abgesehen davon, dass du über die Arraygrenzen von zahlenfeld hinaus liest (hat 10 Elemente, von 0 bis 9), fügst du hier auch 10mal 10 Zahlen ein.<br />
reicht das hier nicht?</p>
<pre><code class="language-cpp">for(int i=0;i&lt;10;++i)
{
  ListBox1-&gt;Items-&gt;Add(IntToStr(zahlenfeld [i]));
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1291414</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1291414</guid><dc:creator><![CDATA[Braunstein]]></dc:creator><pubDate>Thu, 24 May 2007 13:26:40 GMT</pubDate></item><item><title><![CDATA[Reply to Brauche Hilfe beim Schreiben einer Forward Declaration on Thu, 24 May 2007 13:41:42 GMT]]></title><description><![CDATA[<p>bei....</p>
<pre><code class="language-cpp">for(int i=0;i&lt;10;++i)
{
  ListBox1-&gt;Items-&gt;Add(IntToStr(zahlenfeld [i]));
}
</code></pre>
<p>zeigt der einen Fehler an weil das i undefiniert ist</p>
<p>oben muss [10] auf [11] geändert werden</p>
<p>und</p>
<p>zahlenfeld[0] = 0;</p>
<p>muss noch dazu gefügt werden dann läufts einwandfrei <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/1291423</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1291423</guid><dc:creator><![CDATA[Aicde]]></dc:creator><pubDate>Thu, 24 May 2007 13:41:42 GMT</pubDate></item><item><title><![CDATA[Reply to Brauche Hilfe beim Schreiben einer Forward Declaration on Thu, 24 May 2007 13:42:57 GMT]]></title><description><![CDATA[<p>i ist hier auf jedem Fall definiert. So wie ich es geschrieben habe muß es funktionieren.<br />
Hast du nicht zufällig ein Semikolon nach der for-Schleife?<br />
etwa so?</p>
<pre><code class="language-cpp">for(int i=0;i&lt;10;++i);
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1291425</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1291425</guid><dc:creator><![CDATA[Braunstein]]></dc:creator><pubDate>Thu, 24 May 2007 13:42:57 GMT</pubDate></item></channel></rss>