fw4spl
core/fwActivities/src/fwActivities/builder/factory/new.cpp
1 /* ***** BEGIN LICENSE BLOCK *****
2  * FW4SPL - Copyright (C) IRCAD, 2009-2015.
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 "fwActivities/IBuilder.hpp"
8 #include "fwActivities/builder/factory/new.hpp"
9 
10 
11 namespace fwActivities
12 {
13 namespace builder
14 {
15 namespace factory
16 {
17 
18 ::fwActivities::IBuilder::sptr New( const ::fwActivities::builder::registry::KeyType & classname )
19 {
20  return ::fwActivities::builder::registry::get()->create(classname);
21 }
22 
23 } // namespace factory
24 } // namespace builder
25 } // namespace fwActivities
26 
27 
Contains fwAtomsFilter::factory utilities.
Namespace containing activities data and builder.