From b5067ce044a8f9d79746d61faa817c0a8342e84c Mon Sep 17 00:00:00 2001 From: Gerhard Hoffmann <g.hoffmann@atb-online.eu> Date: Mon, 24 Feb 2025 16:14:23 +0100 Subject: [PATCH] Minor: add some constants --- common/include/utils_internal.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/common/include/utils_internal.h b/common/include/utils_internal.h index 51705d0..1f7b3c3 100644 --- a/common/include/utils_internal.h +++ b/common/include/utils_internal.h @@ -10,6 +10,11 @@ namespace internal { static constexpr const char *UPDATE_REQUESTED{"requested"}; static constexpr const char *NO_CUSTOMER_REPOSITORY{"no customer repository"}; + static constexpr const int NO_CUSTOMER_REPOSITORY_CODE{-8}; + static constexpr const char *NO_ETC_CUSTOMER_REPOSITORY{"no etc/ in customer repository"}; + static constexpr const int NO_ETC_CUSTOMER_REPOSITORY_CODE{-9}; + static constexpr const char *NO_OPT_CUSTOMER_REPOSITORY{"no opt/ in customer repository"}; + static constexpr const int NO_OPT_CUSTOMER_REPOSITORY_CODE{-10}; static constexpr const char *ISMAS_CONNECTED{"connected"}; static constexpr const char *ISMAS_DISCONNECTED{"disconnected"};