fw4spl
Bundles/io/ioDicomWeb/include/ioDicomWeb/Plugin.hpp
1 /* ***** BEGIN LICENSE BLOCK *****
2  * FW4SPL - Copyright (C) IRCAD, 2018.
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 #pragma once
8 
9 #include <fwRuntime/Plugin.hpp>
10 
11 namespace ioDicomWeb
12 {
13 
14 struct Plugin : public ::fwRuntime::Plugin
15 {
19  ~Plugin() noexcept;
20 
21  // Overrides
22  void start();
23 
24  // Overrides
25  void stop() noexcept;
26 
27 };
28 
29 } // namespace ioDicomWeb
void start()
Notifies the plugin about its start.
Provides a default plugin implementation.
void stop() noexcept
Notifies the plugin about its stop.
ioDicomWeb contains services use to deal with PACS through HTTP.