home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / cl-lib07.zip / pm.zip / usr / include / pm / delegatewindow.h < prev    next >
C/C++ Source or Header  |  1995-06-27  |  309b  |  23 lines

  1. #ifndef _DELEGATEWINDOW_H_
  2. #define _DELEGATEWINDOW_H_
  3.  
  4. #ifndef _WINDOW_H_
  5. #include <pm/Window.h>
  6. #endif
  7.  
  8. @interface DelegateWindow : Window
  9. {
  10.   id delegate;
  11. }
  12.  
  13. - init;
  14. - setDelegate: anObject;
  15. - delegate;
  16.  
  17. - read: (TypedStream *) aStream;
  18. - write: (TypedStream *) aStream;
  19.  
  20. @end
  21.  
  22. #endif
  23.