c++ homework help assignment 11

profilehomeworkhelp325
movie.h

// Movie.h #ifndef MOVIE_H #define MOVIE_H #include <string> using namespace std; class Movie { // data is private by default string title, studio; long long boxOffice[3]; // World, US, non-US short rank[3], releaseYear; // World, US, non-US enum unit {WORLD, US, NON_US}; public: Movie(); Movie(string); string getTitle() const; string getStudio() const; long long getWorldBoxOffice() const; long long getUSBoxOffice() const; long long getNonUSBoxOffice() const; int getWorldRank() const; int getUSRank() const; int getNonUSRank() const; int getReleaseYear() const; friend ostream& operator <<(ostream&, const Movie&); private: Movie(const Movie &); // private copy constructor blocks invocation }; #endif