Programme.hpp (380B)
1 #include <string> 2 #define NB_LACHE_PAR_ROUND 3 3 4 class Programme 5 { 6 int m_iScore; 7 int m_iNumRound; 8 int m_iNbBalles; 9 int m_iNbCanardsTues; 10 int m_iNbCanardsTuesRound; 11 public : 12 Programme(); 13 void EcranTitre() const; 14 void Partie(); 15 void Round(); 16 void LacheCanards(int); 17 18 void AfficherInformations() const; 19 static void Attendre(double); 20 static std::string ToString(int); 21 }; 22