c++ homework help assignment 11
// Movies.h #ifndef MOVIES_H #define MOVIES_H #include "Movie.h" // include Movie class definition #include <string> using namespace std; typedef Movie* moviePtr; class Movies { // data is private by default static const int MAX_MOVIES = 1000; moviePtr *movies; short movieCnt; public: Movies(string); int getMovieCount() const; const moviePtr getMovie(string, int&) const; const moviePtr operator[](int) const; ~Movies(); private: void loadMovies(string); string myToLower(string) const; void reSize(); }; #endif