1 #ifndef WeekRelativeUnit_D_H 2 #define WeekRelativeUnit_D_H 3 4 #include <stdio.h> 5 #include <stdint.h> 6 #include <stddef.h> 7 #include <stdbool.h> 8 #include "diplomat_runtime.h" 9 10 11 12 13 14 typedef enum WeekRelativeUnit { 15 WeekRelativeUnit_Previous = 0, 16 WeekRelativeUnit_Current = 1, 17 WeekRelativeUnit_Next = 2, 18 } WeekRelativeUnit; 19 20 typedef struct WeekRelativeUnit_option {union { WeekRelativeUnit ok; }; bool is_ok; } WeekRelativeUnit_option; 21 22 23 24 #endif // WeekRelativeUnit_D_H 25