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