Téléverser les fichiers vers "/"
This commit is contained in:
10
Course.cpp
Normal file
10
Course.cpp
Normal file
@@ -0,0 +1,10 @@
|
||||
#include "Course.h"
|
||||
|
||||
Course::Course(int id, const std::string& name)
|
||||
: id(id), name(name) {}
|
||||
|
||||
int Course::getId() const { return id; }
|
||||
|
||||
std::string Course::getName() const { return name; }
|
||||
|
||||
void Course::setName(const std::string& name) { this->name = name; }
|
||||
Reference in New Issue
Block a user