#ifndef _HORSE_H #define _HORSE_H class Horse { public: Horse(); // default constructor bool getRacing(); int getPosition(); void race(); void dontRace(); void advance(); private: int position; bool isRacing; }; #endif