// movie.h #ifndef MOVIE_H #define MOVIE_H #include using namespace std; class Movie { private: int year; string name; public: // constructs a new movie object. Movie(string name, int year); Movie(); // default constructor // setters and getters string getName(); int getYear(); void setName(string newName); void setYear(int newYear); }; #endif