Changeset 1197
- Timestamp:
- Mar 3, 2008, 3:32:12 PM (15 years ago)
- Location:
- trunk/yat/utility
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/yat/utility/CommandLine.h
r1178 r1197 60 60 cmd.parse(argc, argv); 61 61 } 62 catch (cmd_error e){62 catch (cmd_error& e){ 63 63 std::cout << e.what() << std::endl; 64 64 return 1; … … 83 83 preceded by '-' as e.g. '-h', and can also be concatenated like 84 84 "program -vf", which is equivalent to "program -v -f". or 85 its sibblings for different types. By using the allow_help() 86 function help will be displayed when flag (default is '-h' and 87 '--help') is found in parsing. 85 its sibblings for different types. 88 86 */ 89 87 class CommandLine -
trunk/yat/utility/yat_assert.h
r1100 r1197 31 31 32 32 /** 33 \internal 34 33 35 \brief yat_assert is similar to assert in std. 34 36
Note: See TracChangeset
for help on using the changeset viewer.