fw4spl
Bundles/io/ioDicomWeb/src/ioDicomWeb/Plugin.cpp
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 #include "ioDicomWeb/Plugin.hpp"
8 
9 #include <fwRuntime/utils/GenericExecutableFactoryRegistrar.hpp>
10 
11 #include <fwServices/macros.hpp>
12 
13 namespace ioDicomWeb
14 {
15 
16 using namespace ::fwRuntime::utils;
17 static GenericExecutableFactoryRegistrar<Plugin> registrar("::ioDicomWeb::Plugin");
18 
19 Plugin::~Plugin() noexcept
20 {
21 }
22 
23 //------------------------------------------------------------------------------
24 
26 {
27 }
28 
29 //------------------------------------------------------------------------------
30 
31 void Plugin::stop() noexcept
32 {
33 }
34 
35 } // namespace ioDicomWeb
void start()
Notifies the plugin about its start.
void stop() noexcept
Notifies the plugin about its stop.
The namespace fwRuntime::utils contains template executable factory classes.
ioDicomWeb contains services use to deal with PACS through HTTP.