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