From fe485b7b39863623b448e97d49e2e73713d452a8 Mon Sep 17 00:00:00 2001 From: Gerhard Hoffmann Date: Fri, 12 Apr 2024 14:24:32 +0200 Subject: [PATCH] pop_business_hours as uint64_t. --- library/include/mobilisis/payment_opt.h | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/library/include/mobilisis/payment_opt.h b/library/include/mobilisis/payment_opt.h index a8a7a67..b5751ae 100644 --- a/library/include/mobilisis/payment_opt.h +++ b/library/include/mobilisis/payment_opt.h @@ -1,5 +1,9 @@ -#pragma once +#ifndef PAYMENT_OPT_H_INCLUDED +#define PAYMENT_OPT_H_INCLUDED + + #include +#include class ATBPaymentOption { @@ -37,6 +41,8 @@ public: int pop_carry_over; int pop_carry_over_time_range_id; int pop_daily_card_price; - int pop_business_hours; + uint64_t pop_business_hours; int pop_time_step_config; }; + +#endif // PAYMENT_OPT_H_INCLUDED