fw4spl
Bundles/op/opVTKMesh/include/opVTKMesh/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 __OPVTKMESH_PLUGIN_HPP__
8 #define __OPVTKMESH_PLUGIN_HPP__
9 
10 
11 #include <fwRuntime/Plugin.hpp>
12 
13 
14 namespace opVTKMesh
15 {
16 
17 
21 struct Plugin : public ::fwRuntime::Plugin
22 {
23 
27  ~Plugin() noexcept;
28 
29  // Overrides
30  void start();
31 
32  // Overrides
33  void stop() noexcept;
34 
35 };
36 
37 
38 } // namespace opVTKMesh
39 
40 
41 #endif //__OPVTKMESH_PLUGIN_HPP__
void start()
Notifies the plugin about its start.
The namespace opVTKMesh contains an implementation of a VTK mesher.
void stop() noexcept
Notifies the plugin about its stop.
Provides a default plugin implementation.
Implements a plugin for the opVTKMesh bundle.