summaryrefslogtreecommitdiff
path: root/CPP/cpp_book/chap5/student_info.h
diff options
context:
space:
mode:
authorCarlos Maiolino <[email protected]>2025-09-06 09:37:14 +0200
committerCarlos Maiolino <[email protected]>2025-09-06 09:37:14 +0200
commit2c9056a23e1a55fd21a8e314c903d9325bffd62e (patch)
treea73ba1c7bb60dd89c9e70769dd510e59a49a56a1 /CPP/cpp_book/chap5/student_info.h
parentee8a08bfa24d9a3d09273fdebe8d73ac38c545f9 (diff)
Move CPP code here
Signed-off-by: Carlos Maiolino <[email protected]>
Diffstat (limited to 'CPP/cpp_book/chap5/student_info.h')
-rw-r--r--CPP/cpp_book/chap5/student_info.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/CPP/cpp_book/chap5/student_info.h b/CPP/cpp_book/chap5/student_info.h
new file mode 100644
index 0000000..697f3c0
--- /dev/null
+++ b/CPP/cpp_book/chap5/student_info.h
@@ -0,0 +1,20 @@
+#ifndef STUDENT_INFO_H
+#define STUDENT_INFO_H
+
+#include <iostream>
+#include <string>
+#include <vector>
+
+struct StudentInfo {
+ std::string name;
+ double midterm;
+ double final;
+ std::vector<double> homework;
+};
+
+
+bool compare_students(const StudentInfo& a, const StudentInfo& b);
+std::istream& read_homework(std::istream& in, std::vector<double>& hw);
+std::istream& read_student(std::istream& is, StudentInfo& s);
+
+#endif /* STUDENT_INFO_H */