| 9335 | template<typename T, typename ChildNodeT> |
| 9336 | struct Node : SharedImpl<> { |
| 9337 | explicit Node( T const& _value ) : value( _value ) {} |
| 9338 | virtual ~Node() {} |
| 9339 | |
| 9340 | typedef std::vector<Ptr<ChildNodeT> > ChildNodes; |
nothing calls this directly
no outgoing calls
no test coverage detected