|
|
|
@ -19,6 +19,22 @@ void affiche_client();
|
|
|
|
|
*/
|
|
|
|
|
void menu_client(int *choix);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Affiche le récapitulatif du panier.
|
|
|
|
|
*
|
|
|
|
|
* Cette fonction affiche le récapitulatif du panier, y compris les références, les poids, les volumes, les prix unitaires, elle permet d'initialiser la session du client.
|
|
|
|
|
*
|
|
|
|
|
* @param numeros
|
|
|
|
|
* @param suspendus
|
|
|
|
|
* @param nombreClients
|
|
|
|
|
* @param budget
|
|
|
|
|
* @param volumeCoffre
|
|
|
|
|
* @param chargeMaximale
|
|
|
|
|
* @param numeroClient
|
|
|
|
|
*/
|
|
|
|
|
void configurer_session_client(int numeros[], int suspendus[], int nombreClients, float *budget, float *volumeCoffre, float *chargeMaximale, int *numeroClient);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Fonction principale de l'interface client.
|
|
|
|
|
*
|
|
|
|
@ -28,4 +44,3 @@ void menu_client(int *choix);
|
|
|
|
|
*/
|
|
|
|
|
void global_client();
|
|
|
|
|
|
|
|
|
|
void configurer_session_client(int numeros[], int suspendus[], int nombreClients, float *budget, float *volumeCoffre, float *chargeMaximale, int *numeroClient);
|
|
|
|
|