Expected class-name before {
Bonjour,
je code un petit programme avec CodeBlocks.
En compilant, j'ai cette erreur étrange :
Citation:
Projet C++\AntSimulator\NormalCell.h|8|error: expected class-name before '{' token|
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
| #ifndef NCELL_H_INCLUDED
#define NCELL_H_INCLUDED
#include "Utilities.h"
#include "Cell.h"
#include "Definitions.h"
class NormalCell : protected Cell
{ // <---- Erreur survient ici
public:
virtual ~NormalCell();
int getFoodQuantity() const;
void setFoodQuantity(int);
int getFoodQuality() const;
void setFoodQuality(int);
void removeOneFood();
virtual bool isWalkable();
virtual CellType getType() const;
virtual bool isNormal();
private:
uint FoodQuality;
uint FoodQuantity;
};
#endif |
Savez-vous ce que c'est ?
Merci, meilleures salutations.