fw4spl
IOperator.cpp
1 /* ***** BEGIN LICENSE BLOCK *****
2  * FW4SPL - Copyright (C) IRCAD, 2017.
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/IOperator.hpp"
8 
9 #include <fwCom/Signal.hxx>
10 
11 namespace fwServices
12 {
13 
14 //-----------------------------------------------------------------------------
15 
16 const ::fwCom::Signals::SignalKeyType IOperator::s_COMPUTED_SIG = "computed";
17 
18 //-----------------------------------------------------------------------------
19 
21 {
22  m_sigComputed = newSignal<ComputedSignalType>(s_COMPUTED_SIG);
23 }
24 
25 //-----------------------------------------------------------------------------
26 
28 {
29 }
30 
31 //-----------------------------------------------------------------------------
32 
33 }
Namespace fwServices is dedicated to (mimic) the dynamic affectation of methods to (pure data) object...
FWSERVICES_API IOperator()
IOperator constructor.
Definition: IOperator.cpp:20
ComputedSignalType::sptr m_sigComputed
Signal emitted when operator is computed.
Definition: IOperator.hpp:43
virtual FWSERVICES_API ~IOperator()
IOperator destructor.
Definition: IOperator.cpp:27