00001 /* 00002 * BehaviorTester.cpp 00003 * 00004 * Created on: Nov 3, 2011 00005 * Author: mriedel 00006 */ 00007 00008 #include <tk_state/StateEstimatorController.hpp> 00009 #include <telekyb_base/TeleKyb.hpp> 00010 00011 int main(int argc, char **argv) { 00012 telekyb::TeleKyb::init(argc,argv, "StateEstimTester"); 00013 00014 telekyb::StateEstimatorController::Instance(); 00015 00016 ros::waitForShutdown(); 00017 00018 telekyb::TeleKyb::shutdown(); 00019 } 00020 00021