fw4spl
Bundles/visu/visuVTKAdaptor/include/visuVTKAdaptor/Plugin.hpp
1 /* ***** BEGIN LICENSE BLOCK *****
2  * FW4SPL - Copyright (C) IRCAD, 2009-2015.
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 __VISUVTKADAPTOR_PLUGIN_HPP__
8 #define __VISUVTKADAPTOR_PLUGIN_HPP__
9 
10 #include "visuVTKAdaptor/config.hpp"
11 
12 #include <fwRuntime/Plugin.hpp>
13 
14 
15 namespace visuVTKAdaptor
16 {
17 
22 struct Plugin : public ::fwRuntime::Plugin
23 {
27  ~Plugin() noexcept;
28 
29  // Overrides
30  void start();
31 
32  // Overrides
33  void stop() noexcept;
34 
35 };
36 
37 } // namespace visuVTKAdaptor
38 
39 #endif // __VISUVTKADAPTOR_PLUGIN_HPP__
The namespace visuVTKAdaptor contains the list of adaptors available for the generic scene...
This class is started when the bundles is loaded.
Provides a default plugin implementation.
void start()
Notifies the plugin about its start.
void stop() noexcept
Notifies the plugin about its stop.