1
2
3
4
5
6 #include <cmajor/binder/BoundNode.hpp>
7
8 namespace cmajor { namespace binder {
9
10 BoundNode::BoundNode(const Span& span_, const boost::uuids::uuid& moduleId_, BoundNodeType boundNodeType_) : span(span_), moduleId(moduleId_), boundNodeType(boundNodeType_)
11 {
12 }
13
14 } }