-
Notifications
You must be signed in to change notification settings - Fork 1
/
affichage_console.h
44 lines (37 loc) · 1.63 KB
/
affichage_console.h
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// auteur jean christophe michelin
// date de creation 17/02/2014
// derniere modification 17/02/2014
// affichage_console.h
#ifndef AFFICHAGE_CONSOLE_H
#define AFFICHAGE_CONSOLE_H
#include <iostream>
#include <time.h>
#include <cstdlib>
class affichage_console
{
public:
affichage_console(){;}
//---------------------------------------------
static void afficheLogoSncf(){
std::cerr.precision(12); // je le fait une fois pour toute
srand(time(NULL));
std::cerr<<" .``` "<<std::endl;
std::cerr<<"'''''''''''''', "<<std::endl;
std::cerr<<"''''''''''''''''''', "<<std::endl;
std::cerr<<"''''''''''''''''''''''' "<<std::endl;
std::cerr<<"'''''''''''''''''''''''''; "<<std::endl;
std::cerr<<"'''''''''''''''''''''''''''' "<<std::endl;
std::cerr<<"'''''''''''''''''''''''''''''' "<<std::endl;
std::cerr<<"''''. :'''; ''` : ````:', "<<std::endl;
std::cerr<<"''' '''; `''. ` `''' ,'''''' "<<std::endl;
std::cerr<<"''' .'', ; `' ,'''' ''''''' "<<std::endl;
std::cerr<<"''''. `: ': ' '''': '': "<<std::endl;
std::cerr<<"''''''; `''' ` '''' '''''' "<<std::endl;
std::cerr<<"''''''' ''';` ; `;'' .'''''' "<<std::endl;
std::cerr<<"'' .''''' ';` `` '''''': "<<std::endl;
std::cerr<<"'''''''''''''''''''''''''''' "<<std::endl;
std::cerr<<"'''''''''''''''''''''''''''' "<<std::endl;
}
};
#endif // AFFICHAGE_CONSOLE_H