home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / MiscKit1.7.1 / MiscKit / Headers / misckit / miscgiskit / MiscCoordConverterServer.h < prev    next >
Encoding:
Text File  |  1995-07-21  |  627 b   |  24 lines

  1. /*======================== MiscCoordConverterServer.h =======================*/
  2. /* The MiscCoordConverterServer protocol is required so that a MiscCoord can
  3.    request a conversion from a MiscCoordConverter.
  4.  
  5.    DMA Release 0.8, Copyright @1993 by Genesis Project, Ltd. All Rights
  6.    Reserved. For further information on terms and conditions see
  7.         the MiscKit license.
  8.  
  9. HISTORY
  10. 24-Mar-93  Dale Amon at GPL
  11.        Created.
  12. */
  13.  
  14. #import <objc/objc.h>
  15. #import <misckit/miscgiskit.h>
  16.  
  17. @protocol MiscCoordConverterServer
  18.  
  19. - (BOOL)    convert: (id <MiscCoordConverterClient>) inCoord
  20.             to: (id <MiscCoordConverterClient>) outCoord;
  21.  
  22. @end
  23.  
  24.