#ifndef HEIGHT_H #define HEIGHT_H class height { int feet; double inches; public: //three constructors height(int f, double i); //feet and inches height(double i); //inches height(); void print() const; double centimeters() const; //Return this height in centimeters friend double distance(const height& h1, const height& h2); }; #endif