Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class TGlass
- {
- public:
- TGlass(double capacity_cc);
- void PourLiquid(double cc);
- void Drink(double cc);
- double GetRemaining(void);
- private:
- double _Amount;
- double _Capacity;
- };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement