Téléverser les fichiers vers "/"
This commit is contained in:
20
Grade.h
Normal file
20
Grade.h
Normal file
@@ -0,0 +1,20 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user