You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* @brief This will be the Abstract Parent class where the Derived classes will implement the cook method based on their current state.
*/
class OrderContext;
class OrderState
{
public:
virtual ~OrderState(){};
OrderState(){};
/**
* @brief This will be the Abstract Parent class's cook method which is pure virtual therefore the Derived classes will implement the cook method based on their current state.