| 7265 | template<typename T, typename ChildNodeT> |
| 7266 | struct Node : SharedImpl<> { |
| 7267 | explicit Node( T const& _value ) : value( _value ) {} |
| 7268 | virtual ~Node() {} |
| 7269 | |
| 7270 | typedef std::vector<Ptr<ChildNodeT> > ChildNodes; |
nothing calls this directly
no outgoing calls
no test coverage detected