1. The document describes creating an Int class that imitates the functionality of the int data type. The Int class contains an int variable and member functions to initialize, display, and add Int values. A sample program exercises the Int class.
2. It also describes creating a Tollbooth class to model a tollbooth. The class contains data for the number of cars and amount of money collected. Member functions increment counts for paying and non-paying cars. The class displays the totals.
3. Finally, it describes creating a Time class to store hours, minutes, seconds. Member functions initialize, display, and add Time objects. A program tests the Time class.