Go to the documentation of this file.00001 
00002 
00003 
00004 
00005 
00006 
00007 
00008 #include <telekyb_core/TeleKybCore.hpp>
00009 
00010 #include <telekyb_base/TeleKyb.hpp>
00011 #include <ros/ros.h>
00012 
00013 
00014 int main(int argc, char **argv) {
00015 
00016         
00017         telekyb::RawOptionsContainer::addOption("tRosNrSpinnerThreads","4");
00018         telekyb::TeleKyb::init(argc,argv,"TeleKybCore", ros::init_options::AnonymousName);
00019 
00020         telekyb::TeleKybCore* core = new telekyb::TeleKybCore();
00021 
00022         
00023         ros::waitForShutdown();
00024 
00025         
00026         delete core;
00027 
00028         telekyb::TeleKyb::shutdown();
00029 }