Advertisement
Guest User

Untitled

a guest
Feb 25th, 2014
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. class TGlass
  2. {
  3. public:
  4. TGlass(double Capacity);
  5. void PourLiquid(double v);
  6. void Drink(double b);
  7. double GetRemaining();
  8. private:
  9. int AmountX;
  10. int AmountY;
  11. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement