erreur a la compil (niveau noob)

erreur a la compil (niveau noob) - C++ - Programmation

Marsh Posté le 22-10-2005 à 17:39:50    

j'ai cette erreur sous visual studio :  
e:\projet\MyDirectx\MyVertexList.cpp(123) : fatal error C1010: unexpected end of file while looking for precompiled header directive
 
en gros c'est le fichier h qui ne va pas apparemment, mais le voici, je ne vois rien de faux :
 

Code :
  1. #ifndef LABY_H
  2. #define LABY_H
  3. class Laby
  4. {
  5. public:
  6. Laby();
  7. int getPorteX(int i,int j);
  8. int getPorteZ(int i,int j);
  9. bool canGo(int x1,int y1,int x2,int y2);
  10. private:
  11. int porteX[10][9];
  12. int porteZ[9][10];
  13. };
  14. #endif


 
une aide quelqu'un ?

Message cité 1 fois
Message édité par fabyyyy le 22-10-2005 à 17:40:05
Reply

Marsh Posté le 22-10-2005 à 17:39:50   

Reply

Marsh Posté le 22-10-2005 à 18:06:44    

fabyyyy a écrit :

j'ai cette erreur sous visual studio :  
e:\projet\MyDirectx\MyVertexList.cpp(123) : fatal error C1010: unexpected end of file while looking for precompiled header directive
 
en gros c'est le fichier h qui ne va pas apparemment, mais le voici, je ne vois rien de faux :
 

Code :
  1. #ifndef LABY_H
  2. #define LABY_H
  3. class Laby
  4. {
  5. public:
  6. Laby();
  7. int getPorteX(int i,int j);
  8. int getPorteZ(int i,int j);
  9. bool canGo(int x1,int y1,int x2,int y2);
  10. private:
  11. int porteX[10][9];
  12. int porteZ[9][10];
  13. };
  14. #endif


 
une aide quelqu'un ?


 
ok il fallait en fait mettre la libraire standard :)
merci à moi-même de ma réponse ;)

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed