ice_point_operators.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <ostream>
4 
5 #include <VisionX/interface/core/DataTypes.h>
6 
7 namespace visionx
8 {
9  bool operator!=(const Point3D& lhs, const Point3D& rhs);
10  std::ostream& operator<<(std::ostream& os, const Point3D& rhs);
11 
12  // bool operator!=(const RGBA& lhs, const RGBA& rhs); // Already defined.
13  std::ostream& operator<<(std::ostream& os, const RGBA& rhs);
14 
15  bool operator!=(const ColoredPoint3D& lhs, const ColoredPoint3D& rhs);
16  std::ostream& operator<<(std::ostream& os, const ColoredPoint3D& rhs);
17 
18  bool operator!=(const LabeledPoint3D& lhs, const LabeledPoint3D& rhs);
19  std::ostream& operator<<(std::ostream& os, const LabeledPoint3D& rhs);
20 } // namespace visionx
visionx::operator!=
bool operator!=(const Point3D &lhs, const Point3D &rhs)
Definition: ice_point_operators.cpp:13
visionx
ArmarX headers.
Definition: OpenPoseStressTest.h:38
visionx::operator<<
std::ostream & operator<<(std::ostream &os, const Point3D &rhs)
Definition: ice_point_operators.cpp:19