Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- @file vasos.h
- @author Clase DSII 2011/2011
- @brief Definition of TVaso
- Aço es per a generar la documentacio automaticament
- */
- #ifndef TVASO
- #define TVASO
- class TVaso
- {
- public:
- TVaso(double capacidad); //constructor
- ~TVaso(); //destructor
- void Beber (double valor);
- void EcharLiquido (double valor);
- double VerCuantoQueda (void);
- private:
- double capacidad_vaso;
- };
- #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement