// Author: Andreas F. Borchert // Contributors: {} // Description: sinus function as extension of Function #ifndef SINUS_H #define SINUS_H #include #include "Function.hpp" class Sinus: public Function { public: virtual const std::string& get_name() const; virtual double execute(double x) const; }; // class Sinus #endif