Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- @file tglass.h
- @brief definition of the TGlas class
- */
- #ifndef tglass_H
- #define tglass_H
- class TGlass
- {
- public:
- TGlass(double capacity_cc);
- void PourLiquid(double cc);
- void Drink(double cc);
- double GetRemaining(void);
- private:
- double _amount;
- double _capacity;
- };
- #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement