Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #ifndef COFFEE_CLASS_H
- #define COFFEE_CLASS_H
- #include <iostream>
- class coffee
- {
- public:
- coffee();
- virtual ~coffee{}
- virtual std::string& GetCost() const=0;
- virtual std::string& GetDescription() const=0;
- private:
- coffee(const coffee & ccoffee);
- coffee& operator= (coffee const & ocoffee);
- };
- #endif
Advertisement
Add Comment
Please, Sign In to add comment