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 eebf94a commit 651c06aCopy full SHA for 651c06a
visualization/include/pcl/visualization/cloud_viewer.h
@@ -37,6 +37,7 @@
37
#define PCL_CLOUD_VIEWER_H_
38
39
#include <pcl/visualization/pcl_visualizer.h> //pcl vis
40
+#include <boost/scoped_ptr.hpp> // scoped_ptr for pre-C++11
41
42
#include <string>
43
@@ -199,7 +200,7 @@ namespace pcl
199
200
private:
201
/** \brief Private implementation. */
202
struct CloudViewer_impl;
- std::auto_ptr<CloudViewer_impl> impl_;
203
+ boost::scoped_ptr<CloudViewer_impl> impl_;
204
205
boost::signals2::connection
206
registerMouseCallback (boost::function<void (const pcl::visualization::MouseEvent&)>);
0 commit comments