#ifndef NAME_LIST_H #define NAME_LIST_H #include "ArrayException.h" class NameList { private: string names[20]; int curname; public: NameList() {curname = -1;} string getName() throw(ArrayException); }; #endif