fw4spl
Bundles/visu/scene2D/src/scene2D/Plugin.cpp
1 /* ***** BEGIN LICENSE BLOCK *****
2  * FW4SPL - Copyright (C) IRCAD, 2009-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 
8 #include "scene2D/Plugin.hpp"
9 
10 #include <fwRuntime/utils/GenericExecutableFactoryRegistrar.hpp>
11 
12 
13 namespace scene2D
14 {
15 
16 //-----------------------------------------------------------------------------
17 
18 static ::fwRuntime::utils::GenericExecutableFactoryRegistrar<Plugin> registrar("::scene2D::Plugin");
19 
20 //-----------------------------------------------------------------------------
21 
22 Plugin::~Plugin() noexcept
23 {
24 }
25 
26 //-----------------------------------------------------------------------------
27 
29 {
30 }
31 
32 //-----------------------------------------------------------------------------
33 
34 void Plugin::stop() noexcept
35 {
36 }
37 
38 //-----------------------------------------------------------------------------
39 
40 } // namespace scene2D
void stop() noexcept
Notifies the plugin about its stop.
This bundles contains data and services used to display a 2D Qt scene.
void start()
Notifies the plugin about its start.