<?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[VS2005 express und immer &amp;quot;nicht aufgelöstes externes Symbol&amp;quot;]]></title><description><![CDATA[<p>So, ich hoffe es gab sowas nicht schonmal, konnte auf die schnelle jedenfalls nichts finden.<br />
Ich bin relativer newbie in c++ und brauche es aber für das Studium (daher hat das Program auch keine praktische Bedeutung). Ich habe nun das Problem das mir bei beinhae jedem Program der COmpilerfehler &quot;nicht aufgelöstes externes Symbol&quot; ausgegeben wird und ich weiß nicht mehr weiter. Ich gebe euch hier mal eines meiner ersten Programme das bis heute nicht läuft. Vielleicht kann es mal wer testen und mir sagen was ich falsch mache?</p>
<p>Zuerst der Header.</p>
<pre><code class="language-cpp">typedef int Element;

class List
{
public:
	List();			//Konstruktor; erzeugt leere Liste
	~List();		//Destruktor

	int insert(int pos, Element x);
	//Fügt x in Liste an Position Pos ein. Elemente danach werden um 1 Pos nach rechts verschoben.
	//Liefert 0 bei falscher Position (pos &lt; 0, oder pos &gt; length); sonst 1.

	int del(int pos);
	//Löscht Element an Position pos. Elemente danach werden um 1 pos nach links verschoben.
	//Liefert 0 bei falscher Position (pos &lt; 0, oder pos &gt;= length); sonst 1.

	int get(int pos, Element&amp; x)const;
	//Liefert Element x an Position x.
	//Liefert 0 bei falscher Position (pos &lt; 0, oder pos &gt;= length); sonst 1.

	int assign(int pos, Element x);
	//Weist Element x an Position pos zu.
	//Liefert 0 bei falscher Position (pos &lt; 0, oder pos &gt;= length); sonst 1.

	int length() const {return n;}
	//liefert Anzahl der Elemente.

private:
	Element* a; //Liste als dynamisches Feld
	int n;		//Anzahl der Elemente
	int gr;		//Feldgröße von a

};
</code></pre>
<p>dann das Hauptprogram</p>
<pre><code class="language-cpp">#include &lt;iostream&gt;
#include &quot;listasarray.h&quot;

using namespace std;

//Definition von printlist...
int printList(List list1)
{

		Element Erg;
		int lang = 0;

		//List list;	

		for(int i = 0; i &lt; 10; i++)
			{
			list1.get(i,Erg);
			lang = list1.length();
			cout &lt;&lt; &quot;i&quot; &lt;&lt; lang;
			cout &lt;&lt; &quot;i.&quot; &lt;&lt; i &lt;&lt; &quot;Element:&quot; &lt;&lt; i &lt;&lt; Erg;
			}
		return 0;
	}

int main()
{
	List list;

	list.insert(0,1);
	printList(list);
	cout &lt;&lt; endl;
		// 1 |

	list.insert(1,10);
	printList(list);
	cout &lt;&lt; endl;
	// 1 | 10 |

	list.insert(1,2);
	printList(list);
	cout &lt;&lt; endl;
	// 1 | 2 | 10 |

	list.assign(1,5);
	printList(list);
	cout &lt;&lt; endl;
	// 1 | 5 | 10 |

	list.del(0);
	printList(list);
	cout &lt;&lt; endl;
	// 5 | 10 |
}
</code></pre>
<p>Ich habe nun schon etliche Dinge probiert, bekomme es wegen dem Fehler aber nicht zum laufen und auch die online Hilfe sagt mir da sehr wenig. Wäre super wenn einer den erlösenden Tip hätte.</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/149266/vs2005-express-und-immer-quot-nicht-aufgelöstes-externes-symbol-quot</link><generator>RSS for Node</generator><lastBuildDate>Sat, 05 Sep 2026 05:35:59 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/149266.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 04 Jun 2006 10:49:54 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to VS2005 express und immer &amp;quot;nicht aufgelöstes externes Symbol&amp;quot; on Sun, 04 Jun 2006 10:49:54 GMT]]></title><description><![CDATA[<p>So, ich hoffe es gab sowas nicht schonmal, konnte auf die schnelle jedenfalls nichts finden.<br />
Ich bin relativer newbie in c++ und brauche es aber für das Studium (daher hat das Program auch keine praktische Bedeutung). Ich habe nun das Problem das mir bei beinhae jedem Program der COmpilerfehler &quot;nicht aufgelöstes externes Symbol&quot; ausgegeben wird und ich weiß nicht mehr weiter. Ich gebe euch hier mal eines meiner ersten Programme das bis heute nicht läuft. Vielleicht kann es mal wer testen und mir sagen was ich falsch mache?</p>
<p>Zuerst der Header.</p>
<pre><code class="language-cpp">typedef int Element;

class List
{
public:
	List();			//Konstruktor; erzeugt leere Liste
	~List();		//Destruktor

	int insert(int pos, Element x);
	//Fügt x in Liste an Position Pos ein. Elemente danach werden um 1 Pos nach rechts verschoben.
	//Liefert 0 bei falscher Position (pos &lt; 0, oder pos &gt; length); sonst 1.

	int del(int pos);
	//Löscht Element an Position pos. Elemente danach werden um 1 pos nach links verschoben.
	//Liefert 0 bei falscher Position (pos &lt; 0, oder pos &gt;= length); sonst 1.

	int get(int pos, Element&amp; x)const;
	//Liefert Element x an Position x.
	//Liefert 0 bei falscher Position (pos &lt; 0, oder pos &gt;= length); sonst 1.

	int assign(int pos, Element x);
	//Weist Element x an Position pos zu.
	//Liefert 0 bei falscher Position (pos &lt; 0, oder pos &gt;= length); sonst 1.

	int length() const {return n;}
	//liefert Anzahl der Elemente.

private:
	Element* a; //Liste als dynamisches Feld
	int n;		//Anzahl der Elemente
	int gr;		//Feldgröße von a

};
</code></pre>
<p>dann das Hauptprogram</p>
<pre><code class="language-cpp">#include &lt;iostream&gt;
#include &quot;listasarray.h&quot;

using namespace std;

//Definition von printlist...
int printList(List list1)
{

		Element Erg;
		int lang = 0;

		//List list;	

		for(int i = 0; i &lt; 10; i++)
			{
			list1.get(i,Erg);
			lang = list1.length();
			cout &lt;&lt; &quot;i&quot; &lt;&lt; lang;
			cout &lt;&lt; &quot;i.&quot; &lt;&lt; i &lt;&lt; &quot;Element:&quot; &lt;&lt; i &lt;&lt; Erg;
			}
		return 0;
	}

int main()
{
	List list;

	list.insert(0,1);
	printList(list);
	cout &lt;&lt; endl;
		// 1 |

	list.insert(1,10);
	printList(list);
	cout &lt;&lt; endl;
	// 1 | 10 |

	list.insert(1,2);
	printList(list);
	cout &lt;&lt; endl;
	// 1 | 2 | 10 |

	list.assign(1,5);
	printList(list);
	cout &lt;&lt; endl;
	// 1 | 5 | 10 |

	list.del(0);
	printList(list);
	cout &lt;&lt; endl;
	// 5 | 10 |
}
</code></pre>
<p>Ich habe nun schon etliche Dinge probiert, bekomme es wegen dem Fehler aber nicht zum laufen und auch die online Hilfe sagt mir da sehr wenig. Wäre super wenn einer den erlösenden Tip hätte.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1071057</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1071057</guid><dc:creator><![CDATA[exit]]></dc:creator><pubDate>Sun, 04 Jun 2006 10:49:54 GMT</pubDate></item><item><title><![CDATA[Reply to VS2005 express und immer &amp;quot;nicht aufgelöstes externes Symbol&amp;quot; on Sun, 04 Jun 2006 11:21:17 GMT]]></title><description><![CDATA[<p>Und wo hast Du die Methoden der Klasse implementiert???</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1071078</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1071078</guid><dc:creator><![CDATA[Jochen Kalmbach]]></dc:creator><pubDate>Sun, 04 Jun 2006 11:21:17 GMT</pubDate></item><item><title><![CDATA[Reply to VS2005 express und immer &amp;quot;nicht aufgelöstes externes Symbol&amp;quot; on Sun, 04 Jun 2006 13:09:06 GMT]]></title><description><![CDATA[<p>Jochen Kalmbach schrieb:</p>
<blockquote>
<p>Und wo hast Du die Methoden der Klasse implementiert???</p>
</blockquote>
<p>Die aus der List Klasse? Sind die nicht alle drin?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1071141</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1071141</guid><dc:creator><![CDATA[exit]]></dc:creator><pubDate>Sun, 04 Jun 2006 13:09:06 GMT</pubDate></item><item><title><![CDATA[Reply to VS2005 express und immer &amp;quot;nicht aufgelöstes externes Symbol&amp;quot; on Sun, 04 Jun 2006 13:20:27 GMT]]></title><description><![CDATA[<p>exit schrieb:</p>
<blockquote>
<p>Jochen Kalmbach schrieb:</p>
<blockquote>
<p>Und wo hast Du die Methoden der Klasse implementiert???</p>
</blockquote>
<p>Die aus der List Klasse? Sind die nicht alle drin?</p>
</blockquote>
<p>Nicht bei selbst deklarierten Klassen <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f603.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--grinning_face_with_big_eyes"
      title=":D"
      alt="😃"
    /></p>
<p>Falls du std::list&lt;&gt; meinst, das ist ne eingebaute Klasse. Aber wenn du eine Klasse deklarierst musst du auch deren Methoden definieren <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>BR</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1071148</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1071148</guid><dc:creator><![CDATA[evilissimo]]></dc:creator><pubDate>Sun, 04 Jun 2006 13:20:27 GMT</pubDate></item><item><title><![CDATA[Reply to VS2005 express und immer &amp;quot;nicht aufgelöstes externes Symbol&amp;quot; on Sun, 04 Jun 2006 13:21:46 GMT]]></title><description><![CDATA[<p>exit schrieb:</p>
<blockquote>
<pre><code class="language-cpp">int insert(int pos, Element x);
	//Fügt x in Liste an Position Pos ein. Elemente danach werden um 1 Pos nach rechts verschoben.
	//Liefert 0 bei falscher Position (pos &lt; 0, oder pos &gt; length); sonst 1.
</code></pre>
</blockquote>
<p>Nein, der Compiler kann kein Deutsch, er generiert Dir den gewünschten Code nicht selbsttätig <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f603.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--grinning_face_with_big_eyes"
      title=":D"
      alt="😃"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1071149</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1071149</guid><dc:creator><![CDATA[LordJaxom]]></dc:creator><pubDate>Sun, 04 Jun 2006 13:21:46 GMT</pubDate></item><item><title><![CDATA[Reply to VS2005 express und immer &amp;quot;nicht aufgelöstes externes Symbol&amp;quot; on Sun, 04 Jun 2006 13:41:11 GMT]]></title><description><![CDATA[<p>hmm... ich glaub ich hab da was falsch verstanden.</p>
<p>Aber nichtsdestotrotz würde ich gerne wissen was ich gegen das nicht aufgelöste Symbol machen kann. Man liest immer das irgendwelche includes fehlen etc., aber bei diesem kurzen code kann doch nicht noch was fehlen. Wie kriege ich das weg?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1071153</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1071153</guid><dc:creator><![CDATA[exit]]></dc:creator><pubDate>Sun, 04 Jun 2006 13:41:11 GMT</pubDate></item><item><title><![CDATA[Reply to VS2005 express und immer &amp;quot;nicht aufgelöstes externes Symbol&amp;quot; on Sun, 04 Jun 2006 13:48:27 GMT]]></title><description><![CDATA[<p>Wie schon mehrmals gesagt musst Du alle Funktionen auch <strong>implementieren</strong>, denn was nicht da ist kann der Linker auch nicht finden. Da sicher niemand <strong>deine</strong> Klasse ausprogrammiert und in die Standardbibliothek gepackt hat, nutzen weitere Includes herzlich wenig. Wie gesagt, der Compiler kann kein Deutsch sondern nur C++, Deine Kommentare reichen ihm nicht!</p>
<p>Achja, Deine Funktion insert z.B. müsste wie folgt ausgeschrieben werden:</p>
<pre><code class="language-cpp">int List::insert(int pos, Element x) {
  // Code
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1071165</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1071165</guid><dc:creator><![CDATA[LordJaxom]]></dc:creator><pubDate>Sun, 04 Jun 2006 13:48:27 GMT</pubDate></item><item><title><![CDATA[Reply to VS2005 express und immer &amp;quot;nicht aufgelöstes externes Symbol&amp;quot; on Sun, 04 Jun 2006 13:56:53 GMT]]></title><description><![CDATA[<p>LordJaxom schrieb:</p>
<blockquote>
<p>Wie schon mehrmals gesagt musst Du alle Funktionen auch <strong>implementieren</strong>, denn was nicht da ist kann der Linker auch nicht finden. Da sicher niemand <strong>deine</strong> Klasse ausprogrammiert und in die Standardbibliothek gepackt hat, nutzen weitere Includes herzlich wenig. Wie gesagt, der Compiler kann kein Deutsch sondern nur C++, Deine Kommentare reichen ihm nicht!</p>
<p>Achja, Deine Funktion insert z.B. müsste wie folgt ausgeschrieben werden:</p>
<pre><code class="language-cpp">int List::insert(int pos, Element x) {
  // Code
}
</code></pre>
</blockquote>
<p>Achso und dann ist das externe Symbol auch weg? ICh weiß schon was ihr mir sagen wollt, konnte aber allgemein mit der Fehlermerldung nichts anfangen. Also meint das im Endeffekt nur das die Implementierung fehlt?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1071174</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1071174</guid><dc:creator><![CDATA[exit]]></dc:creator><pubDate>Sun, 04 Jun 2006 13:56:53 GMT</pubDate></item><item><title><![CDATA[Reply to VS2005 express und immer &amp;quot;nicht aufgelöstes externes Symbol&amp;quot; on Mon, 05 Jun 2006 09:52:41 GMT]]></title><description><![CDATA[<p>Richtich!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1071506</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1071506</guid><dc:creator><![CDATA[groovemaster]]></dc:creator><pubDate>Mon, 05 Jun 2006 09:52:41 GMT</pubDate></item><item><title><![CDATA[Reply to VS2005 express und immer &amp;quot;nicht aufgelöstes externes Symbol&amp;quot; on Mon, 05 Jun 2006 09:59:25 GMT]]></title><description><![CDATA[<p>Ok ok, ich habe mir jetzt mal ne Musterlösung für das Problem besorg was zusätzlich allerdings noch ne Template Klasse bereitstellt. Dieses Programm sollte lauffähig sein, allerdings bekomme ich mit VS2005 wie gehabt den Fehler des nicht aufgelösten externen Symbols.</p>
<p>WIe gehabt erst die hpp</p>
<pre><code class="language-cpp">#ifndef LIST_ARRAY
#define LIST_ARRAY     

#include &lt;iostream&gt;
using namespace std;

template&lt;class T0&gt;
class List
{
	private:
		static const int blockGr; //number of elements in the list for which storage is allocated in one step
		T0 * a;				//list as dynamic array
		int n;				//number of elements in the list
		int gr;				//number of element in the list for which storage is allocated up to now

	public:
		List();								//	constructor, generates empty list
        List(const List &amp;);					// copy constructor 
		~List();							//	destructor

		int length(void) const;				//returns length of list
		bool insert(int pos, const T0 &amp; x);	//inserts x at position pos, shifts the following elements
											//returns 0, if pos dos not make sense, otherwise 1
		bool del(int pos);					//deletes element at position pos, shifts the following elements
											//returns 0, if pos does not make sense, otherwise 1
		bool get(int pos, T0 &amp; x) const;	//x becomes a copy of the element at position pos
											//returns 0, if pos does not make sense, otherwise 1
		bool assign(int pos, const T0 &amp; x);	//assigns x to position pos
											//returns 0, if pos does not make sense, otherwise 1
		List &amp; operator=(const List &amp;);     
		bool operator==(const List &amp;) const;
        friend ostream &amp; operator&lt;&lt; (ostream &amp;, const List&lt;T0&gt; &amp;);	//List output 
};

#endif

/***************************************************************************************************************/
template&lt;class T0&gt;
const int List&lt;T0&gt;::blockGr=100;

template&lt;class T0&gt;
List&lt;T0&gt;::List()
{
	a	=	new	T0[blockGr];
	gr	=	blockGr;
	n	=	0;
}

template&lt;class T0&gt;
List&lt;T0&gt;::List(const List&lt;T0&gt; &amp; vorl)
{
	n=vorl.n;
	gr=vorl.gr;
	a = new T0[gr];
	for	(int i=0;i&lt;n;i++)
		a[i]=vorl.a[i];
}                              

template&lt;class T0&gt;
List&lt;T0&gt;::~List() 
{
	delete [] a;
}

template&lt;class T0&gt;
inline int List&lt;T0&gt;::length(void) const {return n;}

template&lt;class T0&gt;
bool List&lt;T0&gt;::insert(int pos, const T0 &amp; x)
{
	if ((pos&lt;0)||(pos&gt;n))
		return	0;	

	int i;
	if	(n	&gt;=	gr)	//	storage aquired
	{
		T0*	h=new T0[gr+blockGr];
		for (i=0;i&lt;gr;i++)
			h[i]=a[i];
		delete	[]	a;
		a=h;
		gr	+=	blockGr;
	}
	for	(i=n;i&gt;pos;i--)
		a[i]=a[i-1];
	a[pos]=x;
	n++;
	return	1;
}

template&lt;class T0&gt;
bool List&lt;T0&gt;::del(int pos)
{
	if ((pos&lt;0)||(pos&gt;=n))
		return	0;		

	int i;
	for	(i=pos;i&lt;n;i++)
		a[i]=a[i+1];
	n--;
	if	(n	&lt;= gr-blockGr)	//	storage superfluous
	{
		T0*	h=new T0[gr-blockGr];
		for (i=0;i&lt;gr;i++)
			h[i]=a[i];
		delete	[]	a;
		a=h;
		gr	-=	blockGr;
	}
	return	1;
}

template&lt;class T0&gt;
bool List&lt;T0&gt;::get(int pos, T0 &amp; x) const
{
	if ((pos&lt;0)||(pos&gt;=n))
		return 0;		
	x=a[pos];
	return 1;
}

template&lt;class T0&gt;
bool List&lt;T0&gt;::assign(int pos, const T0 &amp; x)
{
	if ((pos&lt;0)||(pos&gt;=n))
		return	0;		
	a[pos]=x;
	return	1;
}

template&lt;class T0&gt;
List&lt;T0&gt; &amp; List&lt;T0&gt;::operator = (const List&lt;T0&gt; &amp; vorl)
{
	if (this != &amp;vorl)
	{
		n=vorl.n;
		gr=vorl.gr;
		delete a;
		a = new T0[gr];
		for	(int i=0;i&lt;n;i++)
			a[i]=vorl.a[i];
	}
	return *this;
}

template&lt;class T0&gt;
bool List&lt;T0&gt;::operator==(const List&lt;T0&gt; &amp; rs) const
{
	if (n!=rs.n)
		return 0;
	for	(int i=0;i&lt;n;i++)
	{
		if (a[i]!=rs.a[i])
			return 0;
	}
	return 1;
}

template&lt;class T0&gt;
ostream &amp; operator&lt;&lt; (ostream &amp;os, const List&lt;T0&gt; &amp;rs)
{
	int i;
	for	(i=0;i&lt;rs.n;i++)
		os &lt;&lt; i+1 &lt;&lt; &quot;.Listenelement:&quot; &lt;&lt; endl &lt;&lt; &quot;\t\t\t\t&quot; &lt;&lt; rs.a[i] &lt;&lt; endl;
	os &lt;&lt; &quot;end of list&quot; &lt;&lt; endl;
	return os;
}
</code></pre>
<p>und dann die cpp</p>
<pre><code class="language-cpp">#include &quot;List_asArray.hpp&quot;
#include &lt;iostream&gt;

using namespace std;

void main()
{
	List&lt;int&gt; list1, list2;
	int x[3],i;

	cout &lt;&lt; &quot;list1:&quot; &lt;&lt; endl &lt;&lt; list1;
	cout &lt;&lt; &quot;List length: &quot; &lt;&lt; list1.length() &lt;&lt; endl;

	list1.insert(0,1);
	cout &lt;&lt; endl &lt;&lt; &quot;list1:&quot; &lt;&lt; endl &lt;&lt; list1 &lt;&lt; endl;	//	1	|

	list1.insert(1,10);
	cout &lt;&lt; &quot;list1:&quot; &lt;&lt; endl &lt;&lt; list1 &lt;&lt; endl;	//	1	|	10	|

	list1.insert(1,2);
	cout &lt;&lt; &quot;list1:&quot; &lt;&lt; endl &lt;&lt; list1 &lt;&lt; endl;	//	1	|	2	|	10	|

	for (i=0;i&lt;3;i++)
	{
		list1.get(i,x[i]);
		cout &lt;&lt; &quot;x[&quot; &lt;&lt; i &lt;&lt; &quot;]=&quot; &lt;&lt; x[i] &lt;&lt; endl;
	}

	list2=list1;
	cout &lt;&lt; endl &lt;&lt; &quot;list2:&quot; &lt;&lt; endl &lt;&lt; list2 &lt;&lt; endl;	//	1	|	2	|	10	|

	if (list2==list1)
		cout &lt;&lt; endl &lt;&lt; &quot;list2==list1&quot; &lt;&lt; endl &lt;&lt; endl;

	list1.assign(1,5);
	cout &lt;&lt; &quot;list1:&quot; &lt;&lt; endl &lt;&lt; list1 &lt;&lt; endl;	//	1	|	5	|	10	|

	list1.del(0);
	cout &lt;&lt; &quot;list1:&quot; &lt;&lt; endl &lt;&lt; list1 &lt;&lt; endl;	//	5	|	10	|

	cout &lt;&lt; &quot;List1 length: &quot; &lt;&lt; list1.length() &lt;&lt; endl;
}
</code></pre>
<p>Kann mir bitte jemand helfen was ich tuen muss damit es lauffähig wird? Die ganze rumprogrammiererei macht für mich wenig Sinn wenn es eh nicht läuft. Der Code sollte mit nem VS6.0 auf jeden Fall laufen, aber da das kostenpflichtig ist habe ich das nicht drauf.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1071509</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1071509</guid><dc:creator><![CDATA[exit]]></dc:creator><pubDate>Mon, 05 Jun 2006 09:59:25 GMT</pubDate></item><item><title><![CDATA[Reply to VS2005 express und immer &amp;quot;nicht aufgelöstes externes Symbol&amp;quot; on Mon, 05 Jun 2006 10:15:46 GMT]]></title><description><![CDATA[<p>Die Implementation von Template Funktionen muss mit in die Headerdatei. Kannst sie natürlich auch in einer separaten Datei lassen (zB foo.inl) und schreibst dann am Ende der Header</p>
<pre><code class="language-cpp">#include &quot;foo.inl&quot;
</code></pre>
<p>Diese Vorgehensweise ist aber ein Sonderfall für Templates. <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/27a1.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--right_arrow"
      title=":arrow_right:"
      alt="➡"
    /> Thema: die aktuelle Compilergeneration und ihr Problem mit export</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1071513</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1071513</guid><dc:creator><![CDATA[groovemaster]]></dc:creator><pubDate>Mon, 05 Jun 2006 10:15:46 GMT</pubDate></item></channel></rss>