From 7d6a4c877de8048ec5fbea4a563b3d09c8976105 Mon Sep 17 00:00:00 2001 From: Charles Date: Sun, 12 Jan 2020 20:20:12 +0100 Subject: cpp01 00 -> 04 --- cpp01/ex00/Pony.hpp | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 cpp01/ex00/Pony.hpp (limited to 'cpp01/ex00/Pony.hpp') diff --git a/cpp01/ex00/Pony.hpp b/cpp01/ex00/Pony.hpp new file mode 100644 index 0000000..31a69f4 --- /dev/null +++ b/cpp01/ex00/Pony.hpp @@ -0,0 +1,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 -- cgit