We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd3c4f2 commit 82a129bCopy full SHA for 82a129b
src/CollisionAlgorithm/DataDetectionOutput.h
@@ -13,6 +13,17 @@ class DetectionOutput {
13
public:
14
typedef std::pair<typename FIRST::SPtr,typename SECOND::SPtr> PairDetection;
15
16
+ DetectionOutput() = default;
17
+ ~DetectionOutput() = default;
18
+
19
+ // Copy
20
+ DetectionOutput(const DetectionOutput&) = default;
21
+ DetectionOutput& operator=(const DetectionOutput&) = default;
22
23
+ // Move
24
+ DetectionOutput(DetectionOutput&&) noexcept = default;
25
+ DetectionOutput& operator=(DetectionOutput&&) noexcept = default;
26
27
friend std::ostream& operator<<(std::ostream& os, const DetectionOutput& t) {
28
os << t.m_output.size() << ":" ;
29
for (unsigned i=0;i<t.m_output.size();i++) {
0 commit comments