1 /*
2 *
month.h
3 *
4 * Beispiel-Programm enum-Variable
5 *
6 * Autor: H.Drachenfels
7 * Erstellt am: 13.11.2020
8 */
9
10 #ifndef MONTH_H
11 #define MONTH_H
12
13 namespace htwg
14 {
15 enum month {jan = 1, feb, mar, apr, may, jun, jul, aug, sep, oct, nov, dec};
16 }
17
18 #endif
19