home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1994 June / NEBULA_SE.ISO / SourceCode / MiscKit / Headers / misckit / MiscStorage.h < prev    next >
Encoding:
Text File  |  1994-03-23  |  659 b   |  22 lines

  1. //
  2. //    MiscStorage.h -- a Storage subclass with a cursor
  3. //        Written by Doug McClure Copyright (c) 1994 by Doug McClure.
  4. //                Version 1.0.  All rights reserved.
  5. //
  6. //        This notice may not be removed from this source code.
  7. //
  8. //    This object is included in the MiscKit by permission from the author
  9. //    and its use is governed by the MiscKit license, found in the file
  10. //    "LICENSE.rtf" in the MiscKit distribution.  Please refer to that file
  11. //    for a list of all applicable permissions and restrictions.
  12. //    
  13.  
  14. #import <appkit/appkit.h>
  15. #import <misckit/MiscProtocols.h>
  16.  
  17. @interface MiscStorage : Storage <MiscStorageCursorPositioning>
  18. {
  19.   unsigned cursor;
  20. }
  21. @end
  22.