#ifndef FLYWITHWINGS_HPP #define FLYWITHWINGS_HPP #include "FlyBehavior.hpp" #include class FlyWithWings : public FlyBehavior { public: void fly() { std::cout << "I'm flying" << std::endl; } }; #endif