fw4spl
Bundles/io/ioDcmtk/include/ioDcmtk/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 __IODCMTK_PLUGIN_HPP__
8 #define __IODCMTK_PLUGIN_HPP__
9 
10 #include <fwRuntime/Plugin.hpp>
11 
12 namespace ioDcmtk
13 {
14 
15 struct Plugin : public ::fwRuntime::Plugin
16 {
20  ~Plugin() noexcept;
21 
22  // Overrides
23  void start();
24 
25  // Overrides
26  void stop() noexcept;
27 
28 };
29 
30 } // namespace ioDcmtk
31 
32 #endif //__IODCMTK_PLUGIN_HPP__
Provides a default plugin implementation.
void start()
Notifies the plugin about its start.
void stop() noexcept
Notifies the plugin about its stop.
ioDcmtk contains services use to deal with DICOM using the GDCM library.