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