#ifndef LIST_READER_H #define LIST_READER_H #include class ListReader{ public: static std::istream* isr; static bool eof; static int lineLimit; static int lineCount; static void buildList(class SortedList& list); }; #endif