fw4spl
Bundles/ui/uiIO/include/uiIO/Plugin.hpp
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 #ifndef __UIIO_PLUGIN_HPP__
8 #define __UIIO_PLUGIN_HPP__
9 
10 #include <fwRuntime/Plugin.hpp>
11 
12 
13 namespace uiIO
14 {
15 
17 {
18 
19 public:
20 
22  ~Plugin() noexcept;
23 
25  void start();
26 
28  void stop() noexcept;
29 
30 };
31 
32 } // namespace uiIO
33 
34 #endif //__UIIO_PLUGIN_HPP__
Provides a default plugin implementation.
void start()
This method is used by runtime to initialize the bundle.
void stop() noexcept
This method is used by runtime to stop the bundle.
~Plugin() noexcept
PLugin destructor.
The namespace uiIO contains a simple service to manipulate IO with IHM..