[Problem] C++

12/31/2010 11:01 ZackBlack#1
Hi,
frag mich gerade warum das hier nicht geht.
Hier die Fehlermeldungen:
12/31/2010 11:31 MoepMeep#2
Grob geschätzt? Du hast keine Ahnung was du da machst.
12/31/2010 12:03 Bl@ze!#3
Und du hilfst ihm auch nicht bei einer Antwort und postest nur einen nicht weiterhelfenden Kommentar..

Eine Klassendeklaration schließt man mit einem ";" ab.

Code:
class CPoints
{
private:
	double m_Points;
public:
	double returnPoints(){return m_Points;}
	double addPoints();
	double addPoints(double aPoints);
	double decPoints();
	double decPoints(double dPoints);
	bool resetPoints();
	int savePoints();
	int loadPoints();
}[COLOR="Red"];[/COLOR]
Das ";" hast du allerdings vergessen. ;)