1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#ifndef PONY_HPP # define PONY_HPP class Pony { public: Pony(int w, int s); void say_hello(); void run(); private: int weight; int max_speed; }; #endif