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 namespace pcl
8 {
9  bool operator!=(const PointXYZ& lhs, const PointXYZ& rhs);
10  std::ostream& operator<<(std::ostream& os, const PointXYZ& rhs);
11 
12  bool operator!=(const PointXYZRGBA& lhs, const PointXYZRGBA& rhs);
13  std::ostream& operator<<(std::ostream& os, const PointXYZRGBA& rhs);
14 
15  bool operator!=(const PointXYZL& lhs, const PointXYZL& rhs);
16  std::ostream& operator<<(std::ostream& os, const PointXYZL& rhs);
17 } // namespace pcl
pcl
Definition: pcl_point_operators.cpp:3
pcl::operator<<
std::ostream & operator<<(std::ostream &os, const PointXYZ &rhs)
Definition: pcl_point_operators.cpp:41
pcl::operator!=
bool operator!=(const PointXYZ &lhs, const PointXYZ &rhs)
Definition: pcl_point_operators.cpp:35