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