Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/parseconfig.hfa

    rb5e725a r6a93e4d  
    22
    33#include <math.trait.hfa>
    4 #include <Exception.hfa>
    54
    65
     
    6362
    6463
    65 ExceptionDecl( Missing_Config_Entries,
     64exception Missing_Config_Entries {
    6665        unsigned int num_missing;
    67 );
     66};
    6867
    6968[ void ] msg( * Missing_Config_Entries ex );
    7069
    71 ExceptionDecl( Parse_Failure,
     70exception Parse_Failure {
    7271        * char failed_key;
    7372        * char failed_value;
    74 );
     73};
    7574
    7675[ void ] msg( * Parse_Failure ex );
    7776
    78 ExceptionDecl( Validation_Failure,
     77exception Validation_Failure {
    7978        * char failed_key;
    8079        * char failed_value;
    81 );
     80};
    8281
    8382[ void ] msg( * Validation_Failure ex );
Note: See TracChangeset for help on using the changeset viewer.