00001 /* 00002 * Main.cpp 00003 * 00004 * Created on: Dec 14, 2011 00005 * Author: mriedel 00006 */ 00007 00008 #include <telekyb_base/TeleKyb.hpp> 00009 00010 #include <obs_detection/ObstacleProviderController.hpp> 00011 00012 using namespace TELEKYB_NAMESPACE; 00013 00014 00015 int main(int argc, char **argv) 00016 { 00017 TeleKyb::init(argc,argv,"obstacle_provider", ros::init_options::AnonymousName); 00018 00019 ObstacleProviderController* opc = new ObstacleProviderController(); 00020 00021 // spin at rate. 00022 opc->spin(); // blocking :) 00023 00024 delete opc; 00025 00026 TeleKyb::shutdown(); 00027 } 00028 00029