pcl_point_operators.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <ostream>
4 
5 #include <pcl/point_types.h>
6 
7 
8 namespace pcl
9 {
10  bool operator!=(const PointXYZ& lhs, const PointXYZ& rhs);
11  std::ostream& operator<<(std::ostream& os, const PointXYZ& rhs);
12 
13  bool operator!=(const PointXYZRGBA& lhs, const PointXYZRGBA& rhs);
14  std::ostream& operator<<(std::ostream& os, const PointXYZRGBA& rhs);
15 
16  bool operator!=(const PointXYZL& lhs, const PointXYZL& rhs);
17  std::ostream& operator<<(std::ostream& os, const PointXYZL& rhs);
18 }
19 
pcl
Definition: pcl_point_operators.cpp:4
pcl::operator<<
std::ostream & operator<<(std::ostream &os, const PointXYZ &rhs)
Definition: pcl_point_operators.cpp:38
pcl::operator!=
bool operator!=(const PointXYZ &lhs, const PointXYZ &rhs)
Definition: pcl_point_operators.cpp:33