fw4spl
Bundles/io/ioQt/src/ioQt/Plugin.cpp
1 /* ***** BEGIN LICENSE BLOCK *****
2  * FW4SPL - Copyright (C) IRCAD, 2016.
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 "ioQt/Plugin.hpp"
8 
9 #include <fwRuntime/utils/GenericExecutableFactoryRegistrar.hpp>
10 
11 namespace ioQt
12 {
13 
14 using namespace ::fwRuntime::utils;
15 static GenericExecutableFactoryRegistrar<Plugin> registrar("::ioQt::Plugin");
16 
17 //-----------------------------------------------------------------------------
18 
19 Plugin::~Plugin() noexcept
20 {
21 }
22 
23 //-----------------------------------------------------------------------------
24 
26 {
27 }
28 
29 //-----------------------------------------------------------------------------
30 
31 void Plugin::stop() noexcept
32 {
33 }
34 
35 //-----------------------------------------------------------------------------
36 
37 } // namespace ioQt
~Plugin() noexcept
destructor
void stop() noexcept
Notifies the plugin about its stop.
void start()
Notifies the plugin about its start.
The namespace fwRuntime::utils contains template executable factory classes.