fw4spl
Bundles/ctrl/ctrlHistory/src/ctrlHistory/Plugin.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 "ctrlHistory/Plugin.hpp"
8 
9 #include <fwRuntime/utils/GenericExecutableFactoryRegistrar.hpp>
10 
11 namespace ctrlHistory
12 {
13 
14 static ::fwRuntime::utils::GenericExecutableFactoryRegistrar<Plugin> registrar("::ctrlHistory::Plugin");
15 
16 Plugin::~Plugin() noexcept
17 {
18 }
19 
20 //------------------------------------------------------------------------------
21 
23 {
24 }
25 
26 //------------------------------------------------------------------------------
27 
28 void Plugin::stop() noexcept
29 {
30 }
31 
32 } // namespace ctrlHistory
CTRLHISTORY_API void start()
Overrides start method. Does nothing.
CTRLHISTORY_API ~Plugin() noexcept
Destructor. Do nothing.
CTRLHISTORY_API void stop() noexcept
Overrides stop method. Does nothing.
The namespace ctrlHistory contains services handling command histories.