Changes in libcfa/src/parseconfig.hfa [b5e725a:6a93e4d]
- File:
-
- 1 edited
-
libcfa/src/parseconfig.hfa (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/parseconfig.hfa
rb5e725a r6a93e4d 2 2 3 3 #include <math.trait.hfa> 4 #include <Exception.hfa>5 4 6 5 … … 63 62 64 63 65 ExceptionDecl( Missing_Config_Entries, 64 exception Missing_Config_Entries { 66 65 unsigned int num_missing; 67 );66 }; 68 67 69 68 [ void ] msg( * Missing_Config_Entries ex ); 70 69 71 ExceptionDecl( Parse_Failure, 70 exception Parse_Failure { 72 71 * char failed_key; 73 72 * char failed_value; 74 );73 }; 75 74 76 75 [ void ] msg( * Parse_Failure ex ); 77 76 78 ExceptionDecl( Validation_Failure, 77 exception Validation_Failure { 79 78 * char failed_key; 80 79 * char failed_value; 81 );80 }; 82 81 83 82 [ void ] msg( * Validation_Failure ex );
Note:
See TracChangeset
for help on using the changeset viewer.