// // Created by quentin on 9/13/22. // #ifndef BUDGET_POLYNOMIALFUNCTION_H #define BUDGET_POLYNOMIALFUNCTION_H #include namespace Budget::Utilities { class PolynomialFunction { private: public: explicit PolynomialFunction(std::vector a); double get(double x); private: std::vector a; }; } #endif //BUDGET_POLYNOMIALFUNCTION_H