Changeset 291 in flair-src for trunk/demos
- Timestamp:
- Jan 9, 2019, 1:58:48 PM (6 years ago)
- Location:
- trunk/demos
- Files:
-
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/demos/CircleFollower/simulator/src/main.cpp
r240 r291 85 85 } catch(ArgException& e) { 86 86 cerr << "error: " << e.error() << " for arg " << e.argId() << endl; 87 exit(EXIT_FAILURE); 87 88 } 88 89 } -
trunk/demos/CircleFollower/uav/src/main.cpp
r263 r291 95 95 } catch (ArgException &e) { // catch any exceptions 96 96 cerr << "error: " << e.error() << " for arg " << e.argId() << endl; 97 exit(EXIT_FAILURE); 97 98 } 98 99 } -
trunk/demos/Gps/simulator/src/main.cpp
r158 r291 85 85 } catch(ArgException& e) { 86 86 cerr << "error: " << e.error() << " for arg " << e.argId() << endl; 87 exit(EXIT_FAILURE); 87 88 } 88 89 } -
trunk/demos/Gps/uav/src/main.cpp
r185 r291 94 94 } catch (ArgException &e) { // catch any exceptions 95 95 cerr << "error: " << e.error() << " for arg " << e.argId() << endl; 96 exit(EXIT_FAILURE); 96 97 } 97 98 } -
trunk/demos/OpticalFlow/simulator/src/main.cpp
r158 r291 85 85 { 86 86 cerr << "error: " << e.error() << " for arg " << e.argId() << endl; 87 exit(EXIT_FAILURE); 87 88 } 88 89 } -
trunk/demos/OpticalFlow/uav/src/main.cpp
r137 r291 106 106 address=addressArg.getValue(); 107 107 108 } catch (ArgException &e) // catch any exceptions 109 { cerr << "error: " << e.error() << " for arg " << e.argId() << endl; } 108 } catch (ArgException &e) { 109 cerr << "error: " << e.error() << " for arg " << e.argId() << endl; 110 exit(EXIT_FAILURE); 111 } 110 112 } -
trunk/demos/PidStandalone/simulator/src/main.cpp
r236 r291 84 84 #endif 85 85 86 } catch (ArgException &e) // catch any exceptions 87 { cerr << "error: " << e.error() << " for arg " << e.argId() << endl; } 86 } catch (ArgException &e) { 87 cerr << "error: " << e.error() << " for arg " << e.argId() << endl; 88 exit(EXIT_FAILURE); 89 } 88 90 } 89 91 -
trunk/demos/PidStandalone/uav/src/main.cpp
r236 r291 115 115 headless = headlessArg.getValue(); 116 116 117 } catch (ArgException &e) // catch any exceptions 118 { 117 } catch (ArgException &e) { 119 118 cerr << "error: " << e.error() << " for arg " << e.argId() << endl; 119 exit(EXIT_FAILURE); 120 120 } 121 121 } -
trunk/demos/SimpleFleet/simulator/src/main.cpp
r158 r291 77 77 78 78 79 } catch (ArgException &e) // catch any exceptions 80 { cerr << "error: " << e.error() << " for arg " << e.argId() << endl; } 79 } catch (ArgException &e) { 80 cerr << "error: " << e.error() << " for arg " << e.argId() << endl; 81 exit(EXIT_FAILURE); 82 } 81 83 } 82 84 -
trunk/demos/SimpleFleet/uav/src/main.cpp
r137 r291 100 100 } catch (ArgException &e) { // catch any exceptions 101 101 cerr << "error: " << e.error() << " for arg " << e.argId() << endl; 102 exit(EXIT_FAILURE); 102 103 } 103 104 } -
trunk/demos/Sinus/src/main.cpp
r16 r291 94 94 } catch (ArgException &e) { // catch any exceptions 95 95 cerr << "error: " << e.error() << " for arg " << e.argId() << endl; 96 exit(EXIT_FAILURE); 96 97 } 97 98 } -
trunk/demos/Skeletons/CustomReferenceAngles/src/main.cpp
r137 r291 93 93 } catch (ArgException &e) { // catch any exceptions 94 94 cerr << "error: " << e.error() << " for arg " << e.argId() << endl; 95 exit(EXIT_FAILURE); 95 96 } 96 97 } -
trunk/demos/Skeletons/CustomTorques/src/main.cpp
r137 r291 94 94 } catch (ArgException &e) { // catch any exceptions 95 95 cerr << "error: " << e.error() << " for arg " << e.argId() << endl; 96 exit(EXIT_FAILURE); 96 97 } 97 98 }
Note:
See TracChangeset
for help on using the changeset viewer.