<?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[HILFEEEEE Error C2061 Syntaxfehler. Bezeichner]]></title><description><![CDATA[<p>ich hab ein kleines Problem und verstehe es echt nicht</p>
<p>ich habe eine Klasse Knoten</p>
<p>Knoten.h</p>
<pre><code>#pragma once

class Knoten
	{
	public:
		Knoten(void);
		Knoten(int id, KnotenListe kList);
		Knoten(char *knotenname, char *attribute, char *attrib, Knoten *parentknoten);
	protected:
		char *kname;
		char *attrib;
		int *attval;
		Knoten *pknoten;
	};
</code></pre>
<p>und eine Klasse KnotenListe<br />
KnotenListe.h</p>
<pre><code>#pragma once
#include &quot;Knoten.h&quot;

class KnotenListe
	{
	public:
		KnotenListe(void);
		~KnotenListe(void);
		void push (int i1,int i2);
		int getstart(int i);
		int getend(int i);

	protected: 
		Knoten *pStart;
		Knoten *pEnde;
		Knoten *pAktuell;
	};
</code></pre>
<p>wenn ich alles compile bekomme ich folgenden Syntaxfehler<br />
error C2061: Syntaxfehler: Bezeichner 'KnotenListe'</p>
<p>ich kann mir aber nicht erklären woran das liegt</p>
<p>Vielen Dank für die Hilfe<br />
Gruß<br />
Marcel</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/319737/hilfeeeee-error-c2061-syntaxfehler-bezeichner</link><generator>RSS for Node</generator><lastBuildDate>Fri, 24 Jul 2026 23:15:16 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/319737.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 31 Aug 2013 12:00:36 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to HILFEEEEE Error C2061 Syntaxfehler. Bezeichner on Sat, 31 Aug 2013 12:00:36 GMT]]></title><description><![CDATA[<p>ich hab ein kleines Problem und verstehe es echt nicht</p>
<p>ich habe eine Klasse Knoten</p>
<p>Knoten.h</p>
<pre><code>#pragma once

class Knoten
	{
	public:
		Knoten(void);
		Knoten(int id, KnotenListe kList);
		Knoten(char *knotenname, char *attribute, char *attrib, Knoten *parentknoten);
	protected:
		char *kname;
		char *attrib;
		int *attval;
		Knoten *pknoten;
	};
</code></pre>
<p>und eine Klasse KnotenListe<br />
KnotenListe.h</p>
<pre><code>#pragma once
#include &quot;Knoten.h&quot;

class KnotenListe
	{
	public:
		KnotenListe(void);
		~KnotenListe(void);
		void push (int i1,int i2);
		int getstart(int i);
		int getend(int i);

	protected: 
		Knoten *pStart;
		Knoten *pEnde;
		Knoten *pAktuell;
	};
</code></pre>
<p>wenn ich alles compile bekomme ich folgenden Syntaxfehler<br />
error C2061: Syntaxfehler: Bezeichner 'KnotenListe'</p>
<p>ich kann mir aber nicht erklären woran das liegt</p>
<p>Vielen Dank für die Hilfe<br />
Gruß<br />
Marcel</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2349528</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2349528</guid><dc:creator><![CDATA[mag1982]]></dc:creator><pubDate>Sat, 31 Aug 2013 12:00:36 GMT</pubDate></item><item><title><![CDATA[Reply to HILFEEEEE Error C2061 Syntaxfehler. Bezeichner on Sat, 31 Aug 2013 12:05:46 GMT]]></title><description><![CDATA[<p>Hi,<br />
das Problem ist, dass Knoten KnotenListe benötigt. Das nächste Problem ist dann, dass KnotenListe Knoten benötigt. Dann hast du wieder das Problem, dass Knoten KnotenListe benötigt. Da hast du einen schönen Kreis gebaut. Das Problem löst du, indem du dein Design komplett neu machst, sodass keine Kreise mehr entstehen.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2349529</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2349529</guid><dc:creator><![CDATA[out]]></dc:creator><pubDate>Sat, 31 Aug 2013 12:05:46 GMT</pubDate></item><item><title><![CDATA[Reply to HILFEEEEE Error C2061 Syntaxfehler. Bezeichner on Sat, 31 Aug 2013 12:12:49 GMT]]></title><description><![CDATA[<p>Und indem du die Zeiger ALLE rausnimmst.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2349532</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2349532</guid><dc:creator><![CDATA[Skym0sh0]]></dc:creator><pubDate>Sat, 31 Aug 2013 12:12:49 GMT</pubDate></item><item><title><![CDATA[Reply to HILFEEEEE Error C2061 Syntaxfehler. Bezeichner on Sun, 01 Sep 2013 09:44:59 GMT]]></title><description><![CDATA[<p>verstehe ... Danke</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2349624</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2349624</guid><dc:creator><![CDATA[mag1982]]></dc:creator><pubDate>Sun, 01 Sep 2013 09:44:59 GMT</pubDate></item></channel></rss>