32 lines
836 B
C++
32 lines
836 B
C++
/*====================================
|
|
AUTEUR : Jéré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>
|
|
// Pas trop fou // moi
|
|
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); |