-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(EventManager)!: Out of line some methods
BREAKING CHANGE: `fair::mq::PropertyChangeAsString` moved to `<fairmq/EventManager.h>` (from `<fairmq/Properties.h>`)
- Loading branch information
1 parent
e4f258c
commit 24ec3ba
Showing
4 changed files
with
73 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/******************************************************************************** | ||
* Copyright (C) 2025 GSI Helmholtzzentrum fuer Schwerionenforschung GmbH * | ||
* * | ||
* This software is distributed under the terms of the * | ||
* GNU Lesser General Public Licence (LGPL) version 3, * | ||
* copied verbatim in the file "LICENSE" * | ||
********************************************************************************/ | ||
#include "EventManager.h" | ||
|
||
#include <string> | ||
#include <typeindex> | ||
|
||
template std::shared_ptr< | ||
fair::mq::EventManager::Signal<fair::mq::PropertyChangeAsString, std::string>> | ||
fair::mq::EventManager::GetSignal<fair::mq::PropertyChangeAsString, std::string>( | ||
const std::pair<std::type_index, std::type_index>& key) const; | ||
|
||
template void fair::mq::EventManager::Subscribe<fair::mq::PropertyChangeAsString, std::string>( | ||
const std::string& subscriber, | ||
std::function<void(typename fair::mq::PropertyChangeAsString::KeyType, std::string)>); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters