#ifndef PRODUCT_H #define PRODUCT_H #include class Product { public: Product(std::string const& pn, double pr); std::string to_string() const; double get_price() const; private: std::string product_name; double price; }; std::ostream& operator<<(std::ostream& os, Product const& rhs); #endif