8 #include <pcl/PCLHeader.h>
15 using Ptr = shared_ptr< ::pcl::PointIndices>;
16 using ConstPtr = shared_ptr<const ::pcl::PointIndices>;
29 inline std::ostream&
operator << (std::ostream& s, const ::pcl::PointIndices &v)
31 s <<
"header: " << std::endl;
33 s <<
"indices[]" << std::endl;
34 for (std::size_t i = 0; i < v.indices.size (); ++i)
36 s <<
" indices[" << i <<
"]: ";
37 s <<
" " << v.indices[i] << std::endl;