From e1ec174b27d5e3600758376e8afa94c96bd1a4a6 Mon Sep 17 00:00:00 2001 From: rubisalpha Date: Fri, 13 Feb 2026 13:51:25 +0000 Subject: [PATCH] Actualiser user.h --- user.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/user.h b/user.h index 0a73e21..0277d62 100644 --- a/user.h +++ b/user.h @@ -3,13 +3,14 @@ #include +// RĂ´les disponibles enum Role { ADMIN, PROF, STUDENT }; +// Structure pour un utilisateur struct User { std::string login; std::string password; Role role; }; -#endif - +#endif \ No newline at end of file