<?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[fatal error C1010]]></title><description><![CDATA[<p>Hallo zusammen!</p>
<p>Ich bin gerade mit dem VC++ 6.0 am verzweifeln. Ich habe eine Klasse Creature die ich in einer .h datei definiere, und ihre Funktionen in einer .cpp Datei implementiere. Das ganze geht auch eigentlich bis auf den Fehler<br />
&quot;fatal error C1010: Unerwartetes Dateiende waehrend der Suche nach der Direktive fuer die vorkompilierte Header-Datei&quot; gut.<br />
Weiß jemand die Ursache dafür?<br />
Etwas Code:</p>
<pre><code class="language-cpp">//Creature.h
------------------

#ifndef _CREATURE_H_
#define _CREATURE_H_

//#include &quot;StdAfx.h&quot;
#include &lt;stdlib.h&gt;
#include &lt;string&gt;

using namespace std;

struct Coordinate
{
	int x;
	int y;
};

class Creature
{
public:
//public Teil
private:
//private Teil
};

#endif

//Creature.cpp
-----------------
#include &quot;Creature.h&quot;

//Implementationen
Creature::Creature()
{
}

void Creature::setCoord (Coordinate c)
{
	coord = c;
}

void Creature::setColour (int c)
{
	colour = c;
}

void Creature::setName(string s)
{
	name = s;
}

void Creature::setX (int i)
{
	coord.x = i;
}

void Creature::setY (int i)
{
	coord.y = i;
} //&lt;--hier tritt der Fehler auf!
</code></pre>
<p>Danke im VOraus!&quot;</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/45565/fatal-error-c1010</link><generator>RSS for Node</generator><lastBuildDate>Sun, 26 Apr 2026 00:58:13 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/45565.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 11 Aug 2003 19:54:16 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to fatal error C1010 on Mon, 11 Aug 2003 19:54:47 GMT]]></title><description><![CDATA[<p>Hallo zusammen!</p>
<p>Ich bin gerade mit dem VC++ 6.0 am verzweifeln. Ich habe eine Klasse Creature die ich in einer .h datei definiere, und ihre Funktionen in einer .cpp Datei implementiere. Das ganze geht auch eigentlich bis auf den Fehler<br />
&quot;fatal error C1010: Unerwartetes Dateiende waehrend der Suche nach der Direktive fuer die vorkompilierte Header-Datei&quot; gut.<br />
Weiß jemand die Ursache dafür?<br />
Etwas Code:</p>
<pre><code class="language-cpp">//Creature.h
------------------

#ifndef _CREATURE_H_
#define _CREATURE_H_

//#include &quot;StdAfx.h&quot;
#include &lt;stdlib.h&gt;
#include &lt;string&gt;

using namespace std;

struct Coordinate
{
	int x;
	int y;
};

class Creature
{
public:
//public Teil
private:
//private Teil
};

#endif

//Creature.cpp
-----------------
#include &quot;Creature.h&quot;

//Implementationen
Creature::Creature()
{
}

void Creature::setCoord (Coordinate c)
{
	coord = c;
}

void Creature::setColour (int c)
{
	colour = c;
}

void Creature::setName(string s)
{
	name = s;
}

void Creature::setX (int i)
{
	coord.x = i;
}

void Creature::setY (int i)
{
	coord.y = i;
} //&lt;--hier tritt der Fehler auf!
</code></pre>
<p>Danke im VOraus!&quot;</p>
]]></description><link>https://www.c-plusplus.net/forum/post/329617</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/329617</guid><dc:creator><![CDATA[Fluxx]]></dc:creator><pubDate>Mon, 11 Aug 2003 19:54:47 GMT</pubDate></item><item><title><![CDATA[Reply to fatal error C1010 on Mon, 11 Aug 2003 22:00:37 GMT]]></title><description><![CDATA[<p>Such diese Einstellung im VC6 (ka wo die da ist) und stelle sie mal auf Automatisch Generieren ein.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/329688</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/329688</guid><dc:creator><![CDATA[Knuddlbaer]]></dc:creator><pubDate>Mon, 11 Aug 2003 22:00:37 GMT</pubDate></item></channel></rss>