student.hpp (370B)
1 #ifndef STUDENT_HPP 2 #define STUDENT_HPP 3 4 #include "xstring.hpp" 5 6 struct Student 7 { 8 lab::xstring id; 9 lab::xstring lname; 10 lab::xstring fname; 11 12 Student(const lab::xstring& id, 13 const lab::xstring& lname, 14 const lab::xstring& fname) 15 :id(id), lname(lname), fname(fname) {} 16 }; 17 18 #endif /* STUDENT_HPP */