//------------------------------------------------------------------- // File :application.h // Author :Alicia Thorsen // Course :CS1129 // // Application class definition. //------------------------------------------------------------------- #ifndef APPLICATION_H #define APPLICATION_H #include "course.h" const int MAX_COURSES = 100; const char OUTPUT_FILE_NAME[] = "output.txt"; class Application { public: Application() : numOfCourses(0) {}; void readInputFile(string); void calcLetterGrades(); void writeOutputFile() const; private: Course catalog[MAX_COURSES]; int numOfCourses; }; #endif