class Product { public: Product(); void read(); bool is_better_than(Product b) const; void print() const; private: implementation details };