Advertisement
Guest User

Untitled

a guest
Feb 25th, 2014
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. class TGlass
  2. {
  3. public:
  4. TGlass(double capacity_cc);
  5. void PourLiquid(double cc);
  6. void Drink(double cc);
  7. double GetRemaining(void);
  8. private:
  9. double _Amount;
  10. double _Capacity;
  11. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement