From 1bc23c18c1b38658dc557d748470e99815cfedda Mon Sep 17 00:00:00 2001 From: Jupp Tscheak <jupp.tscheak@daimler.com> Date: Tue, 10 Aug 2021 09:06:48 +0200 Subject: [PATCH] Added overload for "RegisterEntityDeletedCallback" that is taking a "UniqueId" as argument. Signed-off-by: Jupp Tscheak <jupp.tscheak@daimler.com> --- MantleAPI/include/MantleAPI/Traffic/i_entity_repository.h | 1 + 1 file changed, 1 insertion(+) diff --git a/MantleAPI/include/MantleAPI/Traffic/i_entity_repository.h b/MantleAPI/include/MantleAPI/Traffic/i_entity_repository.h index c9090777..ed103f04 100644 --- a/MantleAPI/include/MantleAPI/Traffic/i_entity_repository.h +++ b/MantleAPI/include/MantleAPI/Traffic/i_entity_repository.h @@ -48,6 +48,7 @@ class IEntityRepository virtual void RegisterEntityCreatedCallback(const std::function<void(IEntity&)>& callback) = 0; virtual void RegisterEntityDeletedCallback(const std::function<void(const std::string&)>& callback) = 0; + virtual void RegisterEntityDeletedCallback(const std::function<void(UniqueId)>& callback) = 0; }; } // namespace mantle_api -- GitLab