Files
TP-C--/Grade.h

20 lines
303 B
C++

#ifndef GRADE_H
#define GRADE_H
class Grade {
private:
int studentId;
int courseId;
float value;
public:
Grade(int studentId, int courseId, float value);
int getStudentId() const;
int getCourseId() const;
float getValue() const;
void setValue(float value);
};
#endif