Add member variables

pop_carry_over_start_time_range
pop_carry_over_end_time_range:

If carry-over has been set, then provide the limits
for the carry-over: at the end of day1 (start) and
at the beginning of the next day (end).
This commit is contained in:
Gerhard Hoffmann 2024-04-19 13:12:46 +02:00
parent dfd74a455a
commit dbe649d0e4

View File

@ -23,6 +23,8 @@ public:
pop_max_price = 0;
pop_carry_over = -1;
pop_carry_over_time_range_id = -1;
pop_carry_over_start_time_range = -1;
pop_carry_over_end_time_range = -1;
pop_daily_card_price = -1;
pop_business_hours = -1;
pop_time_step_config = -1;
@ -40,6 +42,8 @@ public:
double pop_max_price;
int pop_carry_over;
int pop_carry_over_time_range_id;
int pop_carry_over_start_time_range;
int pop_carry_over_end_time_range;
int pop_daily_card_price;
uint64_t pop_business_hours;
int pop_time_step_config;