fw4spl
Bundles/core/activities/include/activities/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 __ACTIVITIES_PLUGIN_HPP__
8 #define __ACTIVITIES_PLUGIN_HPP__
9 
10 #include <fwRuntime/Plugin.hpp>
11 #include "activities/config.hpp"
12 
13 namespace activities
14 {
19 struct ACTIVITIES_CLASS_API Plugin : public ::fwRuntime::Plugin
20 {
24  ACTIVITIES_API ~Plugin() noexcept;
25 
26  // Overrides
27  ACTIVITIES_API void start();
28 
29  // Overrides
30  ACTIVITIES_API void stop() noexcept;
31 
32 };
33 
34 } // namespace activities
35 
36 #endif //__ACTIVITIES_PLUGIN_HPP__
Provides a default plugin implementation.
The namespace activities contains helpers and services allowing to launch activities.