fw4spl
Bundles/ui/uiVisuQt/include/uiVisuQt/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 __UIVISUQT_PLUGIN_HPP__
8 #define __UIVISUQT_PLUGIN_HPP__
9 
10 #include <fwRuntime/Plugin.hpp>
11 
12 namespace uiVisuQt
13 {
16 struct Plugin : public ::fwRuntime::Plugin
17 {
21  ~Plugin() noexcept;
22 
23  // Overrides
24  void start();
25 
26  // Overrides
27  void stop() noexcept;
28 
29 };
30 
31 } // namespace uiVisuQt
32 
33 #endif //__UIVISUQT_PLUGIN_HPP__
void start()
Notifies the plugin about its start.
The namespace uiVisuQt supplies user interface editors done with Qt.
void stop() noexcept
Notifies the plugin about its stop.
Provides a default plugin implementation.