pathFollow.cpp

00001 /*
00002   Tgif の obj から生成した経路に追従
00003   Satofumi KAMIMURA
00004   $Id$
00005 */
00006 
00007 #include "vutils.h"
00008 #include "mRunCtrl.h"
00009 
00010 extern void pathFollow(RunCtrl& run);
00011 
00012 
00013 int main(int argc, char *argv[]) {
00014   try {
00015     mRunCtrl run;
00016     if (initConnection(&run, argc, argv) < 0) {
00017       exit(1);
00018     }
00019     vmonitor::show();
00020 
00021     pathFollow(run);
00022     VXV::Delay(1000);
00023 
00024   } catch (std::exception& e) {
00025     printf("exception: %s\n", e.what());
00026   }
00027   return 0;
00028 }
00029 

Generated on Mon Apr 13 22:52:02 2009 by  doxygen 1.5.7.1