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