<?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[Vorwaertsdeklaration]]></title><description><![CDATA[<p>Hallo,</p>
<p>ich habe folgende Struktur aus einem C Header:</p>
<pre><code class="language-cpp">typedef struct line_struct {
...
} LINE_STRUCT;
</code></pre>
<p>Wie mache ich darauf jetzt eine Vorwaertsdeklaration?<br />
Weder struct line_struct noch struct LINE_STRUCT klappte;/</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/288417/vorwaertsdeklaration</link><generator>RSS for Node</generator><lastBuildDate>Thu, 20 Aug 2026 00:43:21 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/288417.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 16 Jun 2011 12:20:45 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Vorwaertsdeklaration on Thu, 16 Jun 2011 12:20:45 GMT]]></title><description><![CDATA[<p>Hallo,</p>
<p>ich habe folgende Struktur aus einem C Header:</p>
<pre><code class="language-cpp">typedef struct line_struct {
...
} LINE_STRUCT;
</code></pre>
<p>Wie mache ich darauf jetzt eine Vorwaertsdeklaration?<br />
Weder struct line_struct noch struct LINE_STRUCT klappte;/</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2079088</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2079088</guid><dc:creator><![CDATA[WutMob]]></dc:creator><pubDate>Thu, 16 Jun 2011 12:20:45 GMT</pubDate></item><item><title><![CDATA[Reply to Vorwaertsdeklaration on Thu, 16 Jun 2011 12:22:03 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">struct line_struct;
</code></pre>
<p>typedefs kann man nicht vorausdeklarieren.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2079090</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2079090</guid><dc:creator><![CDATA[Bashar]]></dc:creator><pubDate>Thu, 16 Jun 2011 12:22:03 GMT</pubDate></item></channel></rss>