fw4spl
Bundles/registration/basicRegistration/include/basicRegistration/Plugin.hpp
1 /* ***** BEGIN LICENSE BLOCK *****
2  * FW4SPL - Copyright (C) IRCAD, 2009-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 
7 
8 #ifndef __BASICREGISTRATION_PLUGIN_HPP__
9 #define __BASICREGISTRATION_PLUGIN_HPP__
10 
11 #include <fwRuntime/Plugin.hpp>
12 
13 #include "basicRegistration/config.hpp"
14 
15 namespace basicRegistration
16 {
17 
21 struct BASICREGISTRATION_CLASS_API Plugin : public ::fwRuntime::Plugin
22 {
23 
25  BASICREGISTRATION_API ~Plugin() noexcept;
26 
28  BASICREGISTRATION_API void start();
29 
31  BASICREGISTRATION_API void stop() noexcept;
32 
33 };
34 
35 
36 } // namespace basicRegistration
37 
38 
39 #endif //__BASICREGISTRATION_PLUGIN_HPP__
The namespace basicRegistration contains services to perfom a basic registration between images and m...
Provides a default plugin implementation.