course.hpp (351B)
1 #ifndef COURSE_HPP 2 #define COURSE_HPP 3 4 #include "xstring.hpp" 5 6 struct Course 7 { 8 lab::xstring code; 9 lab::xstring name; 10 bool four_year; 11 12 Course(const lab::xstring& code, const lab::xstring& name, 13 const bool four_year) 14 :code(code), name(name), four_year(four_year) {} 15 }; 16 17 #endif /* COURSE_HPP */