home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / NEXTSTEP / Connectivity / GateKeeper-2.1 / HLRecord.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-02-27  |  965 b   |  38 lines

  1. //************************************************************************
  2. //
  3. //    HLRecord.h.  
  4. //        
  5. //        HotList Record objects, i.e this is what the HotList is made of
  6. //
  7. //        by    Felipe A. Rodriguez        
  8. //
  9. //    This code is supplied "as is" the author makes no warranty as to its 
  10. //    suitability for any purpose.  This code is free and may be distributed 
  11. //    in accordance with the terms of the:
  12. //        
  13. //            GNU GENERAL PUBLIC LICENSE
  14. //            Version 2, June 1991
  15. //            copyright (C) 1989, 1991 Free Software Foundation, Inc.
  16. //             675 Mass Ave, Cambridge, MA 02139, USA
  17. //
  18. //************************************************************************
  19.  
  20. #import <appkit/appkit.h>
  21.  
  22. @interface HLRecord:Object
  23. {
  24.     id  IconImage;
  25.     char *GateDocName;
  26.     char Path[MAXPATHLEN + 1];    // generic buffer to hold paths
  27.     char *GateDocPath;
  28. }
  29.  
  30. - setGateDocName:(const char *)gateDocName; 
  31. - setRecordPath:(const char *)aPath; 
  32. - (char *)gateDocName; 
  33. - (char *)gateDocPath; 
  34. - gateIcon; 
  35.  
  36.  
  37. @end
  38.