10 lines
262 B
C++
10 lines
262 B
C++
#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; } |