pathFollow.cpp
00001
00002
00003
00004
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