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.