20 lines
256 B
C++
20 lines
256 B
C++
#include <iostream>
|
|
|
|
#include "horloge.h"
|
|
using namespace std;
|
|
|
|
int main()
|
|
{
|
|
Horloge uneHorloge ;
|
|
TOUCHES_CLAVIER laTouche = AUCUNE;
|
|
|
|
do
|
|
{
|
|
laTouche = uneHorloge.Controler(laTouche);
|
|
} while (laTouche != FIN);
|
|
|
|
|
|
|
|
return 0;
|
|
}
|