#ifndef HEIGHT_H // had difficulty displaying code on public html through height directory #define HEIGHT_H class height { double _centimeters; // internal storage in centimeters public: // Three constructors height(int f, double i); // feet and inches height(double i); // total inches height(); // default constructor void print() const; double centimeters() const; // return this height in cm friend double distance(const height& h1, const height& h2); }; #endif