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 
47 namespace bta_tof_driver {
48 
50 
51  public:
53  nodelet::Nodelet(),
54  lp_(NULL),
55  stream_thread_(NULL)
56  {
57  };
58 
59  virtual ~Sensor2DNodelet()
60  {
61  stream_thread_->join();
62  };
63 
64  private:
65  virtual void onInit()
66  {
67  NODELET_WARN_STREAM("Initializing nodelet..." << getName());
68 
70  stream_thread_.reset(new boost::thread(boost::bind(&Sensor2D::init, lp_.get())));
71  };
72  boost::scoped_ptr<bta_tof_driver::Sensor2D> lp_;
73  boost::scoped_ptr<boost::thread> stream_thread_;
74  };
75 
76 }
77 
80 
81 
const std::string & getName() const
#define NODELET_WARN_STREAM(...)
ros::NodeHandle & getPrivateNodeHandle() const
PLUGINLIB_EXPORT_CLASS(bta_tof_driver::Sensor2DNodelet, nodelet::Nodelet)
ros::NodeHandle & getNodeHandle() const
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 Fri Jun 21 2019 19:57:15