using enum here so that we can use descriptive month names instead of numbers 0, 1, ... 11 when accessing array of days per month
| 5 | // month names instead of numbers 0, 1, ... 11 when |
| 6 | // accessing array of days per month |
| 7 | enum Month |
| 8 | { |
| 9 | Jan, Feb, Mar, Apr, May,Jun, |
| 10 | Jul, Aug, Sep, Oct, Nov, Dec |
| 11 | }; |
| 12 | |
| 13 | // lets us use descriptive names for day of the week |
| 14 | enum DayOfWeek |
nothing calls this directly
no outgoing calls
no test coverage detected