sensor2D_nodelet.cpp
Go to the documentation of this file.
1 /******************************************************************************
2  * Copyright (c) 2016
3  * VoXel Interaction Design GmbH
4  *
5  * @author Angel Merino Sastre
6  *
7  * Permission is hereby granted, free of charge, to any person obtaining a copy
8  * of this software and associated documentation files (the "Software"), to deal
9  * in the Software without restriction, including without limitation the rights
10  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11  * copies of the Software, and to permit persons to whom the Software is
12  * furnished to do so, subject to the following conditions:
13  *
14  * The above copyright notice and this permission notice shall be included in
15  * all copies or substantial portions of the Software.
16  *
17  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23  * THE SOFTWARE.
24  *
25  ******************************************************************************/
26 
44 #include <nodelet/nodelet.h>
45 #include <boost/thread.hpp>
46 #include <boost/scoped_ptr.hpp>
47 
48 namespace bta_tof_driver {
49 
51 
52  public:
54  nodelet::Nodelet(),
55  lp_(NULL),
56  stream_thread_(NULL)
57  {
58  };
59 
60  virtual ~Sensor2DNodelet()
61  {
62  stream_thread_->join();
63  };
64 
65  private:
66  virtual void onInit()
67  {
68  NODELET_WARN_STREAM("Initializing nodelet..." << getName());
69 
71  stream_thread_.reset(new boost::thread(boost::bind(&Sensor2D::init, lp_.get())));
72  };
73  boost::scoped_ptr<bta_tof_driver::Sensor2D> lp_;
74  boost::scoped_ptr<boost::thread> stream_thread_;
75  };
76 
77 }
78 
81 
82 
ros::NodeHandle & getNodeHandle() const
#define NODELET_WARN_STREAM(...)
ros::NodeHandle & getPrivateNodeHandle() const
const std::string & getName() const
PLUGINLIB_EXPORT_CLASS(bta_tof_driver::Sensor2DNodelet, nodelet::Nodelet)
boost::scoped_ptr< boost::thread > stream_thread_
boost::scoped_ptr< bta_tof_driver::Sensor2D > lp_


bta_tof_driver
Author(s): Angel Merino , Simon Vogl
autogenerated on Sun Jun 26 2022 02:45:01