fw4spl
Bundles/ctrl/ctrlHistory/include/ctrlHistory/Plugin.hpp
1 /* ***** BEGIN LICENSE BLOCK *****
2  * FW4SPL - Copyright (C) IRCAD, 2017.
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 __CTRLHISTORY_PLUGIN_HPP__
8 #define __CTRLHISTORY_PLUGIN_HPP__
9 
10 #include "ctrlHistory/config.hpp"
11 
12 #include <fwRuntime/Plugin.hpp>
13 
14 namespace ctrlHistory
15 {
16 
20 struct CTRLHISTORY_CLASS_API Plugin : public ::fwRuntime::Plugin
21 {
23  CTRLHISTORY_API ~Plugin() noexcept;
24 
26  CTRLHISTORY_API void start();
27 
29  CTRLHISTORY_API void stop() noexcept;
30 
31 };
32 
33 } // namespace ctrlHistory
34 
35 #endif //__CTRLHISTORY_PLUGIN_HPP__
The namespace ctrlHistory contains services handling command histories.
Provides a default plugin implementation.
This class starts when the bundle is loaded.