Hi there!
There is nothing special here, its just a code that doesn't work^^
Sorry this is a french version of the program :/
The error is at the 19th line of the .h file
So here is the code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
#include <iostream>
#include <string>
#include "Mot.h"
usingnamespace std;
int main()
{
Mot motMystere;
motMystere.modifier();
do
{
motMystere.afficherTrouve();
}
while(motMystere.getm_gagne()=false);
return 0;
}