fw4spl
FuncSlot.cpp
1 /* ***** BEGIN LICENSE BLOCK *****
2  * FW4SPL - Copyright (C) IRCAD, 2004-2015.
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 <fwGuiQt/util/FuncSlot.hpp>
8 
9 namespace fwGuiQt
10 {
11 
12 namespace util
13 {
14 
15 void doNothing()
16 {
17 }
18 
19 FuncSlot::FuncSlot() : m_func( doNothing )
20 {
21 }
22 
23 void FuncSlot::trigger()
24 {
25  m_func();
26 }
27 
28 } // namespace util
29 
30 } // namespace fwGuiQt
31 
The namespace fwGuiQt contains classes which provide the implementation of the Gui using Qt library...
Definition: WindowLevel.hpp:32