fw4spl
Bundles/ui/uiPreferences/include/uiPreferences/Plugin.hpp
1 /* ***** BEGIN LICENSE BLOCK *****
2  * FW4SPL - Copyright (C) IRCAD, 2014-2016.
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 #ifndef __UIPREFERENCES_PLUGIN_HPP__
7 #define __UIPREFERENCES_PLUGIN_HPP__
8 
9 #include <fwRuntime/Plugin.hpp>
10 
11 namespace uiPreferences
12 {
13 
14 struct Plugin : public ::fwRuntime::Plugin
15 {
19  ~Plugin() noexcept
20  {
21  }
22 
23  // Overrides
24  void start()
25  {
26  }
27 
28  // Overrides
29  void stop() noexcept
30  {
31  }
32 };
33 
34 } // namespace uiPreferences
35 
36 #endif //__UIPREFERENCES_PLUGIN_HPP__
void stop() noexcept
Notifies the plugin about its stop.
Provides a default plugin implementation.
void start()
Notifies the plugin about its start.
The namespace uiPreferences contains editors to manage the preferences configuration.