// image.h -- Declaration of the image class. // Here, we define the constructors, member functions and // data attributes we need for a satellite image class. #include class image { public: // constructors image(); image(char s[]); // member functions image & operator = (const image &i); friend ostream& operator << (ostream &os, image &i); private: // data attributes for each satellite image object int image_num; char satellite[10]; float latitude; char lat_direction; float longitude; char lon_direction; float altitude; };