hawxgamer

Untitled

Dec 14th, 2013
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1.  
  2.  
  3. #ifndef COFFEE_CLASS_H
  4. #define COFFEE_CLASS_H
  5.  
  6. #include <iostream>
  7.  
  8. class coffee
  9. {
  10. public:
  11. coffee();
  12. virtual ~coffee{}
  13. virtual std::string& GetCost() const=0;
  14. virtual std::string& GetDescription() const=0;
  15. private:
  16. coffee(const coffee & ccoffee);
  17. coffee& operator= (coffee const & ocoffee);
  18. };
  19.  
  20. #endif
Advertisement
Add Comment
Please, Sign In to add comment