summaryrefslogtreecommitdiff
path: root/CPP/cpp_book/chap5/approval.h
diff options
context:
space:
mode:
Diffstat (limited to 'CPP/cpp_book/chap5/approval.h')
-rw-r--r--CPP/cpp_book/chap5/approval.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/CPP/cpp_book/chap5/approval.h b/CPP/cpp_book/chap5/approval.h
new file mode 100644
index 0000000..6db01e3
--- /dev/null
+++ b/CPP/cpp_book/chap5/approval.h
@@ -0,0 +1,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 */