// File: Smoothie.h // // See Lab 5 description for documentation. // #ifndef SMOOTHIE_H #define SMOOTHIE_H #include using namespace std ; const unsigned int GLASS_LIMIT = 30000 ; class Smoothie { friend bool operator ==(const Smoothie& lhs, const Smoothie& rhs) ; public: // Constructor Smoothie() ; // Alternate Constructor Smoothie(string fruit, unsigned int ounces) ; // Overloaded + operator const Smoothie operator+(const Smoothie& rhs) const ; // return string description of current drink string Describe() const ; private: // a string with all the fruits in the drink string ingredients ; // total volume of current drink in ounces unsigned int amount ; } ; bool operator ==(const Smoothie& lhs, const Smoothie& rhs) ; #endif