View difference between Paste ID: hL9iV2V5 and 1Bzxwb5g
SHOW: | | - or go back to the newest paste.
1
/*
2
	@file tglass.h
3
	@brief definition of the TGlas class
4
*/
5
6
#ifndef tglass_H
7
#define tglass_H
8
9-
     double _Amount;
9+
10-
     double _Capacity;
10+
11-
};
11+
12
     TGlass(double capacity_cc);
13
     void PourLiquid(double cc);
14
     void Drink(double cc);
15
     double GetRemaining(void);
16
  private:
17
     double _amount;
18
     double _capacity;
19
};
20
21
#endif