fw4spl
Bundles/op/opImageFilter/include/opImageFilter/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 __OPIMAGEFILTER_PLUGIN_HPP__
8 #define __OPIMAGEFILTER_PLUGIN_HPP__
9 
10 
11 #include <fwRuntime/Plugin.hpp>
12 
13 
14 namespace opImageFilter
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 opImageFilter
39 
40 
41 #endif //__OPIMAGEFILTER_PLUGIN_HPP__
The namespace opImageFilter contains several operators on image.
void stop() noexcept
Notifies the plugin about its stop.
Provides a default plugin implementation.
Implements a plugin for the opImageFilter bundle.
void start()
Notifies the plugin about its start.