fw4spl
Bundles/ctrl/ctrlCamp/include/ctrlCamp/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 #ifndef __CTRLCAMP_PLUGIN_HPP__
8 #define __CTRLCAMP_PLUGIN_HPP__
9 
10 #include <fwRuntime/Plugin.hpp>
11 
12 #include "ctrlCamp/config.hpp"
13 
14 namespace ctrlCamp
15 {
16 
20 struct CTRLCAMP_CLASS_API Plugin : public ::fwRuntime::Plugin
21 {
23  CTRLCAMP_API ~Plugin() noexcept;
24 
28  CTRLCAMP_API void start();
29 
31  CTRLCAMP_API void stop() noexcept;
32 
33 };
34 
35 } // namespace ctrlCamp
36 
37 #endif //__CTRLCAMP_PLUGIN_HPP__
The namespace ctrlCamp contains services using camp.
Definition: ICamp.hpp:18
This class is started when the bundles is loaded.
Provides a default plugin implementation.