* The default constructor will initialize every attribute with zero. */
| 42 | * The default constructor will initialize every attribute with zero. |
| 43 | */ |
| 44 | cookie_time() : hour(0), minutes(0), seconds(0) {}; |
| 45 | /** |
| 46 | * The constructor with parameters allows to initialize attributes with custom values. |
| 47 | */ |
nothing calls this directly
no outgoing calls
no test coverage detected