fw4spl
io/fwDicomIOFilter/src/fwDicomIOFilter/factory/new.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 "fwDicomIOFilter/IFilter.hpp"
8 #include "fwDicomIOFilter/factory/new.hpp"
9 
10 
11 namespace fwDicomIOFilter
12 {
13 
14 namespace factory
15 {
16 
17 ::fwDicomIOFilter::IFilter::sptr New( const ::fwDicomIOFilter::registry::KeyType& classname )
18 {
19  return ::fwDicomIOFilter::registry::get()->create(classname);
20 }
21 
22 } // namespace factory
23 
24 } // namespace fwDicomIOFilter
25 
26 
fwDicomIOFilter contains filters used to pre-process images before reading.
Contains fwAtomsFilter::factory utilities.