00001 /*************************************************************************** 00002 * Copyright (C) 2012 by Markus Bader * 00003 * markus.bader@tuwien.ac.at * 00004 * * 00005 * This program is free software; you can redistribute it and/or modify * 00006 * it under the terms of the GNU General Public License as published by * 00007 * the Free Software Foundation; either version 2 of the License, or * 00008 * (at your option) any later version. * 00009 * * 00010 * This program is distributed in the hope that it will be useful, * 00011 * but WITHOUT ANY WARRANTY; without even the implied warranty of * 00012 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * 00013 * GNU General Public License for more details. * 00014 * * 00015 * You should have received a copy of the GNU General Public License * 00016 * along with this program; if not, write to the * 00017 * Free Software Foundation, Inc., * 00018 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * 00019 ***************************************************************************/ 00020 00021 00022 #include <ros/ros.h> 00023 #include <dynamic_reconfigure/server.h> 00024 #include <v4r_uvc/CameraLogitechConfig.h> 00025 00026 class TestNode { 00027 public: 00028 TestNode ( ros::NodeHandle &n ) 00029 : n_(n), n_param_("~") { 00030 reconfigureFnc_ = boost::bind(&TestNode::callbackParameters, this, _1, _2); 00031 reconfigureServer_.setCallback(reconfigureFnc_); 00032 } 00033 void callbackParameters ( v4r_uvc::CameraLogitechConfig &config, uint32_t level ) { 00034 ROS_INFO("callbackParameters"); 00035 } 00036 protected: 00037 ros::NodeHandle n_; 00038 ros::NodeHandle n_param_; 00039 dynamic_reconfigure::Server<v4r_uvc::CameraLogitechConfig> reconfigureServer_; 00040 dynamic_reconfigure::Server<v4r_uvc::CameraLogitechConfig>::CallbackType reconfigureFnc_; 00041 }; 00042 00043 00044 int main(int argc, char **argv) 00045 { 00046 00047 ros::init(argc, argv, "test_node"); 00048 ros::NodeHandle n; 00049 TestNode node(n); 00050 ros::Rate rate(100); 00051 ROS_INFO("Starting to spin..."); 00052 ros::spin(); 00053 return 0; 00054 } 00055