blob: 6db01e3453dc62f2e30ccc0fe2ad0e445df56485 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef APPROVAL_H
#define APPROVAL_H
#include <list>
#include "student_info.h"
bool fgrade(const StudentInfo& s);
std::list<StudentInfo> extract_fails(std::list<StudentInfo>& students);
#endif /* APPROVAL_H */
|