#ifndef PLANETH #define PLANETH class planet { const char *name; double factor; //gravity as a multiple of the earth's public: planet(const char *initial_name, double initial_factor); double weight(double w) const {return factor * w;} }; #endif