File tree Expand file tree Collapse file tree 3 files changed +12
-0
lines changed Expand file tree Collapse file tree 3 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -75,6 +75,10 @@ class LIBFREENECT2_API SyncMultiFrameListener : public FrameListener
75
75
virtual bool onNewFrame (Frame::Type type, Frame *frame);
76
76
private:
77
77
SyncMultiFrameListenerImpl *impl_;
78
+
79
+ /* Disable copy and assignment constructors */
80
+ SyncMultiFrameListener (const SyncMultiFrameListener&);
81
+ SyncMultiFrameListener& operator =(const SyncMultiFrameListener&);
78
82
};
79
83
80
84
// /@}
Original file line number Diff line number Diff line change @@ -268,6 +268,10 @@ class LIBFREENECT2_API Freenect2
268
268
Freenect2Device *openDefaultDevice (const PacketPipeline *factory);
269
269
private:
270
270
Freenect2Impl *impl_;
271
+
272
+ /* Disable copy and assignment constructors */
273
+ Freenect2 (const Freenect2&);
274
+ Freenect2& operator =(const Freenect2&);
271
275
};
272
276
273
277
// /@}
Original file line number Diff line number Diff line change @@ -116,6 +116,10 @@ class LIBFREENECT2_API Registration
116
116
117
117
private:
118
118
RegistrationImpl *impl_;
119
+
120
+ /* Disable copy and assignment constructors */
121
+ Registration (const Registration&);
122
+ Registration& operator =(const Registration&);
119
123
};
120
124
121
125
} /* namespace libfreenect2 */
You can’t perform that action at this time.
0 commit comments