#ifndef DB_H #define DB_H #include #include struct Student { std::string nom; int notes[3]; }; // Export / Import selon rĂ´le bool exportData(const std::string& filename, const std::vector& students, const std::string& role, const std::string& login); bool importData(const std::string& filename, std::vector& students, const std::string& role); #endif