fw4spl
IRegisterer.cpp
1 /* ***** BEGIN LICENSE BLOCK *****
2  * FW4SPL - Copyright (C) IRCAD, 2018.
3  * Distributed under the terms of the GNU Lesser General Public License (LGPL) as
4  * published by the Free Software Foundation.
5  * ****** END LICENSE BLOCK ****** */
6 
7 #include "fwServices/IRegisterer.hpp"
8 
9 #include <fwCom/Slots.hxx>
10 
11 namespace fwServices
12 {
13 
14 // -----------------------------------------------------------------------------
15 
16 const ::fwCom::Slots::SlotKeyType IRegisterer::s_COMPUTE_REGISTRATION_SLOT = "computeRegistration";
17 
18 // ----------------------------------------------------------------------------
19 
21 {
22  newSlot(s_COMPUTE_REGISTRATION_SLOT, &IRegisterer::computeRegistration, this);
23 }
24 
25 // ----------------------------------------------------------------------------
26 
28 {
29 }
30 
31 // ----------------------------------------------------------------------------
32 
33 } // namespace fwServices
Namespace fwServices is dedicated to (mimic) the dynamic affectation of methods to (pure data) object...
virtual FWSERVICES_API void computeRegistration(::fwCore::HiResClock::HiResClockType timestamp)=0
Register matrix slot.
FWSERVICES_API IRegisterer() noexcept
Constructor.
Definition: IRegisterer.cpp:20
virtual FWSERVICES_API ~IRegisterer() noexcept
Destructor.
Definition: IRegisterer.cpp:27