/usr/include/pcl-1.7/pcl/Vertices.h is in libpcl-dev 1.7.2-14build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | #ifndef PCL_MESSAGE_VERTICES_H
#define PCL_MESSAGE_VERTICES_H
#include <string>
#include <vector>
#include <ostream>
#include <pcl/pcl_macros.h>
namespace pcl
{
/** \brief Describes a set of vertices in a polygon mesh, by basically
* storing an array of indices.
*/
struct Vertices
{
Vertices () : vertices ()
{}
std::vector<uint32_t> vertices;
public:
typedef boost::shared_ptr<Vertices> Ptr;
typedef boost::shared_ptr<Vertices const> ConstPtr;
}; // struct Vertices
typedef boost::shared_ptr<Vertices> VerticesPtr;
typedef boost::shared_ptr<Vertices const> VerticesConstPtr;
inline std::ostream& operator<<(std::ostream& s, const ::pcl::Vertices & v)
{
s << "vertices[]" << std::endl;
for (size_t i = 0; i < v.vertices.size (); ++i)
{
s << " vertices[" << i << "]: ";
s << " " << v.vertices[i] << std::endl;
}
return (s);
}
} // namespace pcl
#endif // PCL_MESSAGE_VERTICES_H
|