First page Back Continue Last page Graphics
::
:: is the same scope operator we've seen. Student_info::read is saying the read function defined within Student_info.
read only requires an istream& parameter since the access to Student_info data is implied.
Other references are unqualified (no :: or .) since they are internal to the structure.