Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions io/include/pcl/io/ensenso_grabber.h
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,12 @@ namespace pcl
using ConstPtr = boost::shared_ptr<const EnsensoGrabber>;

// Define callback signature typedefs
using sig_cb_ensenso_point_cloud = void() (const pcl::PointCloud<pcl::PointXYZ>::Ptr &);
using sig_cb_ensenso_point_cloud = void(const pcl::PointCloud<pcl::PointXYZ>::Ptr&);

using sig_cb_ensenso_images void() (const boost::shared_ptr<PairOfImages> &);
using sig_cb_ensenso_images = void(const boost::shared_ptr<PairOfImages>&);

using sig_cb_ensenso_point_cloud_images = void(const pcl::PointCloud<pcl::PointXYZ>::Ptr&,const boost::shared_ptr<PairOfImages>&);

using sig_cb_ensenso_point_cloud_images = void()
(const pcl::PointCloud<pcl::PointXYZ>::Ptr &, const boost::shared_ptr<PairOfImages> &);
/** @endcond */

/** @brief Constructor */
Expand Down