summaryrefslogtreecommitdiff
path: root/implementation/routing/include/eventgroupinfo.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'implementation/routing/include/eventgroupinfo.hpp')
-rw-r--r--implementation/routing/include/eventgroupinfo.hpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/implementation/routing/include/eventgroupinfo.hpp b/implementation/routing/include/eventgroupinfo.hpp
index 558c3b9..08536e0 100644
--- a/implementation/routing/include/eventgroupinfo.hpp
+++ b/implementation/routing/include/eventgroupinfo.hpp
@@ -39,11 +39,12 @@ public:
VSOMEIP_EXPORT const std::set<std::shared_ptr<event> > get_events() const;
VSOMEIP_EXPORT void add_event(std::shared_ptr<event> _event);
+ VSOMEIP_EXPORT void remove_event(std::shared_ptr<event> _event);
VSOMEIP_EXPORT const std::set<
std::shared_ptr<endpoint_definition> > get_targets() const;
- VSOMEIP_EXPORT void add_target(std::shared_ptr<endpoint_definition> _target);
- VSOMEIP_EXPORT void del_target(std::shared_ptr<endpoint_definition> _target);
+ VSOMEIP_EXPORT bool add_target(std::shared_ptr<endpoint_definition> _target);
+ VSOMEIP_EXPORT bool remove_target(std::shared_ptr<endpoint_definition> _target);
VSOMEIP_EXPORT void clear_targets();
private: