fw4spl
Bundles/ui/uiGenericQt/include/uiGenericQt/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 __UIGENERICQT_PLUGIN_HPP__
8 #define __UIGENERICQT_PLUGIN_HPP__
9 
10 #include <fwRuntime/Plugin.hpp>
11 
12 namespace uiGenericQt
13 {
14 
15 struct Plugin : public ::fwRuntime::Plugin
16 {
20  ~Plugin() noexcept;
21 
22  // Overrides
23  void start();
24 
25  // Overrides
26  void stop() noexcept;
27 
28 };
29 
30 } // namespace uiGenericQt
31 
32 #endif //__UIGENERICQT_PLUGIN_HPP__
void stop() noexcept
Notifies the plugin about its stop.
The namespace uiGenericQt contains actions to show help, acknowledgments and about frame...
Provides a default plugin implementation.
void start()
Notifies the plugin about its start.