lab_memory
Malevolent Memories
fileio::fileio_internal Namespace Reference

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...
 

Detailed Description

Holds variables that only need to be accessed by the namespace itself.

This is similar to private variables in a class.

Variable Documentation

vector<string>* fileio::fileio_internal::students = NULL

A vector of students that were read from the file.

vector<string>* fileio::fileio_internal::rooms = NULL

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.

size_t fileio::fileio_internal::rooms_i

Represents the index of the Room to read next.