fw4spl
Bundles/core/memory/include/memory/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 __MEMORY_PLUGIN_HPP__
8 #define __MEMORY_PLUGIN_HPP__
9 
10 #include <fwRuntime/Plugin.hpp>
11 
12 namespace memory
13 {
17 struct Plugin : public ::fwRuntime::Plugin
18 {
22  ~Plugin() noexcept;
23 
31  void start();
32 
38  void stop() noexcept;
39 
40 };
41 
42 } // namespace memory
43 
44 #endif //__MEMORY_PLUGIN_HPP__
Implements a plugin for the memory bundle.
Provides a default plugin implementation.
void start()
Start method. (does nothing)
void stop() noexcept
Stop method. (does nothing)
The namespace memory contains tools to manage memory. It is used for dump. It allows to define the bu...