lab_memory
Malevolent Memories
|
Holds variables that only need to be accessed by the namespace itself. More...
Variables | |
vector< string > * | students = NULL |
A vector of students that were read from the file. More... | |
vector< string > * | rooms = NULL |
A vector of Rooms that were read from the file. More... | |
size_t | students_i |
Represents the index of the student to read next. More... | |
size_t | rooms_i |
Represents the index of the Room to read next. More... | |
Holds variables that only need to be accessed by the namespace itself.
This is similar to private variables in a class.
A vector of students that were read from the file.
A vector of Rooms that were read from the file.
size_t fileio::fileio_internal::students_i |
Represents the index of the student to read next.