/usr/include/pcl-1.7/pcl/ModelCoefficients.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 42 43 44 45 | #ifndef PCL_MESSAGE_MODELCOEFFICIENTS_H
#define PCL_MESSAGE_MODELCOEFFICIENTS_H
#include <string>
#include <vector>
#include <ostream>
// Include the correct Header path here
#include <pcl/PCLHeader.h>
namespace pcl
{
struct ModelCoefficients
{
ModelCoefficients () : header (), values ()
{
}
::pcl::PCLHeader header;
std::vector<float> values;
public:
typedef boost::shared_ptr< ::pcl::ModelCoefficients> Ptr;
typedef boost::shared_ptr< ::pcl::ModelCoefficients const> ConstPtr;
}; // struct ModelCoefficients
typedef boost::shared_ptr< ::pcl::ModelCoefficients> ModelCoefficientsPtr;
typedef boost::shared_ptr< ::pcl::ModelCoefficients const> ModelCoefficientsConstPtr;
inline std::ostream& operator<<(std::ostream& s, const ::pcl::ModelCoefficients & v)
{
s << "header: " << std::endl;
s << v.header;
s << "values[]" << std::endl;
for (size_t i = 0; i < v.values.size (); ++i)
{
s << " values[" << i << "]: ";
s << " " << v.values[i] << std::endl;
}
return (s);
}
} // namespace pcl
#endif // PCL_MESSAGE_MODELCOEFFICIENTS_H
|