Téléverser les fichiers vers "/"

This commit is contained in:
2026-02-20 15:17:35 +00:00
parent 5d8d3707c1
commit cf3cb73dae
5 changed files with 62 additions and 0 deletions

20
Course.h Normal file
View File

@@ -0,0 +1,20 @@
#ifndef COURSE_H
#define COURSE_H
#include <string>
class Course {
private:
int id;
std::string name;
public:
Course(int id, const std::string& name);
int getId() const;
std::string getName() const;
void setName(const std::string& name);
};
#endif