Changeset 766 for library/bdm/bdmerror.h

Show
Ignore:
Timestamp:
01/11/10 22:55:57 (14 years ago)
Author:
mido
Message:

abstract methods restored wherever they are meaningful
macros NOT_IMPLEMENTED and NOT_IMPLEMENTED_VOID defined to make sources shorter
emix::set_parameters and mmix::set_parameters removed, corresponding acces methods created and the corresponding validate methods improved appropriately
some compilator warnings were avoided
and also a few other things cleaned up

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • library/bdm/bdmerror.h

    r737 r766  
    6464        } else ((void) 0) 
    6565 
     66#define NOT_IMPLEMENTED(RESULT) { bdm_error( "Not implemented" ); return RESULT; } 
     67 
     68#define NOT_IMPLEMENTED_VOID { bdm_error( "Not implemented" ); } 
     69 
    6670#endif 
    67