main.cpp
Go to the documentation of this file.
1 /******************************************************************************
2  * Software License Agreement (BSD License)
3  *
4  * Copyright (C) 2018, OMRON SENTECH. All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions are met:
8  * * Redistributions of source code must retain the above copyright notice,
9  * this list of conditions and the following disclaimer.
10  * * Redistributions in binary form must reproduce the above copyright
11  * notice, this list of conditions and the following disclaimer in the
12  * documentation and/or other materials provided with the distribution.
13  * * Neither the names of OMRON SENTECH nor the names of its
14  * contributors may be used to endorse or promote products derived from
15  * this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
18  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
21  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27  * POSSIBILITY OF SUCH DAMAGE.
28  *****************************************************************************/
29 
30 #include <ros/ros.h>
31 #include <csignal>
32 #include <boost/thread.hpp>
34 
35 sig_atomic_t terminateFlag = 0;
36 
37 void sighandler(int s)
38 {
39  terminateFlag = 1;
40 }
41 
42 int main(int argc, char **argv)
43 {
44  ros::init(argc, argv, "stcamera_node");
45  stcamera::StCameraNode stcamera_node;
46 
47  std::signal(SIGINT, sighandler);
48 
49  ros::Rate r(1);
50  boost::thread th(boost::bind(&ros::spin));
51  while (ros::ok() && !terminateFlag)
52  {
53  stcamera_node.spin();
54  r.sleep();
55  }
56  return EXIT_SUCCESS;
57 }
58 
int main(int argc, char **argv)
Definition: main.cpp:42
ROSCPP_DECL void init(int &argc, char **argv, const std::string &name, uint32_t options=0)
void sighandler(int s)
Definition: main.cpp:37
Class implementation for stcamera_node.
Definition: stcamera_node.h:64
ROSCPP_DECL void spin(Spinner &spinner)
ROSCPP_DECL bool ok()
bool sleep()
Class implementation for stcamera_node.
sig_atomic_t terminateFlag
Definition: main.cpp:35


omronsentech_camera
Author(s): OSE ROS Support
autogenerated on Tue Jul 2 2019 19:44:14