fw4spl
Bundles/ui/uiImageQt/include/uiImageQt/Plugin.hpp
1 /* ***** BEGIN LICENSE BLOCK *****
2  * FW4SPL - Copyright (C) IRCAD, 2009-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 #ifndef __UIIMAGEQT_PLUGIN_HPP__
8 #define __UIIMAGEQT_PLUGIN_HPP__
9 
10 #include <fwRuntime/Plugin.hpp>
11 
12 namespace uiImageQt
13 {
17 struct Plugin : public ::fwRuntime::Plugin
18 {
22  ~Plugin() noexcept;
23 
24  // Overrides
25  void start();
26 
27  // Overrides
28  void stop() noexcept;
29 
30 };
31 
32 } // namespace uiImageQt
33 
34 #endif //__UIIMAGEQT_PLUGIN_HPP__
Contains editors attached to image.
void start()
Notifies the plugin about its start.
The namespace uiImageQt contains several editors on image written with Qt. This namespace is included...
Definition: ImageInfo.hpp:23
Provides a default plugin implementation.
void stop() noexcept
Notifies the plugin about its stop.