Ajoutez des fichiers projet.
This commit is contained in:
32
mesFonctions.h
Normal file
32
mesFonctions.h
Normal file
@@ -0,0 +1,32 @@
|
||||
/*====================================
|
||||
AUTEUR : J<>r<EFBFBD>my H<>bert & William Godin
|
||||
PROJET : Taxon
|
||||
NOM DU FICHIER : mesFonctions.h
|
||||
DATE : 17 novembre 2025
|
||||
BUT : Contient la d<>claration (prototype) des fonctions utiliser pour Taxon
|
||||
====================================*/
|
||||
|
||||
#pragma once
|
||||
|
||||
//Librairies
|
||||
#include <iostream>
|
||||
#include <conio.h>
|
||||
#include <fstream>
|
||||
#include <string>
|
||||
#include <Windows.h>
|
||||
|
||||
using namespace std;
|
||||
|
||||
//Affichage du logo
|
||||
void afficherMenu(string nomFichier);
|
||||
void ouvrirFichier(fstream& monFlux, string nomFichier);
|
||||
void afficherImage(fstream& monFlux);
|
||||
void fermerFichier(fstream& monFlux);
|
||||
void delai();
|
||||
void curseur(bool interrupteur);
|
||||
void background(int couleur);
|
||||
int demanderBackground();
|
||||
|
||||
// Mot
|
||||
void choisirMot(string nomFichier, int maximum);
|
||||
string goToLine(fstream& monFlux, int numeroLigne);
|
||||
Reference in New Issue
Block a user