home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Internet / News / Alexandra.0.82 / Source / AMGErrorHandling.subproj / EMErrorObserver.h < prev    next >
Encoding:
Text File  |  1996-01-30  |  291 b   |  20 lines

  1.  
  2. #import <objc/Object.h>
  3. #import "dispatcher.h"
  4.  
  5. @interface EMErrorObserver:Object <EMErrorDispatcher>
  6.     {
  7.     id        observer;
  8.     SEL        selector;
  9.     BOOL    wantsInfoObject;
  10.     }
  11.  
  12. - initWith:anObj andSelector:(SEL)aSel;
  13. - free;
  14.  
  15. - setObserver:anObj andSelector:(SEL)aSel;
  16. - observer;
  17. - (SEL)selector;
  18.  
  19. @end
  20.