Skip to content

Commit

Permalink
Fix namespace and pkg name of nodelets
Browse files Browse the repository at this point in the history
  • Loading branch information
iory committed Aug 22, 2018
1 parent 01ef29b commit 1bd8403
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/nodelet/line_segment_detector_nodelet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
#include "opencv_apps/LineSegmentDetectorConfig.h"


namespace line_segment_detector {
namespace opencv_apps {
class LineSegmentDetectorNodelet : public opencv_apps::Nodelet
{
image_transport::Publisher img_pub_;
Expand Down Expand Up @@ -255,4 +255,5 @@ bool LineSegmentDetectorNodelet::need_config_update_ = false;
}

#include <pluginlib/class_list_macros.h>
PLUGINLIB_EXPORT_CLASS(opencv_apps::LineSegmentDetectorNodelet, nodelet::Nodelet);
PLUGINLIB_EXPORT_CLASS(line_segment_detector::LineSegmentDetectorNodelet, nodelet::Nodelet);

0 comments on commit 1bd8403

Please sign in to comment.