fw4spl
Bundles/io/ioDicom/src/ioDicom/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 "ioDicom/Plugin.hpp"
8 
9 #include <fwDicomIOFilterQt/sorter/TagValueConfigurableSorter.hpp>
10 #include <fwRuntime/utils/GenericExecutableFactoryRegistrar.hpp>
11 #include <fwServices/macros.hpp>
12 
13 namespace ioDicom
14 {
15 
16 using namespace ::fwRuntime::utils;
17 static GenericExecutableFactoryRegistrar<Plugin> registrar("ioDicom::Plugin");
18 
19 Plugin::~Plugin() noexcept
20 {
21  // Hack to force link with Qt filters
22  ::fwDicomIOFilterQt::sorter::TagValueConfigurableSorter::sptr t =
23  ::fwDicomIOFilterQt::sorter::TagValueConfigurableSorter::New();
24 }
25 
27 {
28 }
29 
30 void Plugin::stop() noexcept
31 {
32 }
33 
34 } // namespace ioDicom
void start()
Notifies the plugin about its start.
ioDicom contains services used to deal with the DICOM standard.
The namespace fwRuntime::utils contains template executable factory classes.
void stop() noexcept
Notifies the plugin about its stop.