fw4spl
amp/src/fwDataCamp/Node.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 <fwCamp/UserObject.hpp>
8 #include "fwDataCamp/Node.hpp"
9 
10 fwCampImplementDataMacro((fwData)(Node))
11 {
12  builder
13  .tag("object_version", "1")
14  .tag("lib_name", "fwData")
15  .base< ::fwData::Object>()
16  .property("object", &::fwData::Node::m_object)
17  .property("inputs", &::fwData::Node::m_inputs)
18  .property("outputs", &::fwData::Node::m_outputs)
19  ;
20 }
21 
::fwData::Object::sptr m_object
node object
PortContainer m_outputs
Output port container.
Base class for each data object.
Contains the representation of the data objects used in the framework.
PortContainer m_inputs
Input port container.