home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 (1993) / nebula.bin / SourceCode / MiniExamples / PerformanceTuning / VisibleView-02 / StringManager.m < prev    next >
Encoding:
Text File  |  1991-10-18  |  499 b   |  28 lines

  1. //
  2. //    a manager for a nib file
  3. //      Randy Nelson, NeXT Developer Training
  4. //
  5. //    You may freely copy, distribute and reuse the code in this example.
  6. //    NeXT disclaims any warranty of any kind, expressed or implied, as to
  7. //    its fitness for any particular use.
  8. //
  9.  
  10. #import "StringManager.h"
  11. #import <appkit/Application.h>
  12.  
  13. @implementation StringManager
  14. - init
  15. {
  16.     [super init];
  17.     [NXApp loadNibSection:"Strings.nib" owner:self];
  18.     return self;
  19. }
  20.  
  21. - stringSet
  22. {
  23.     return stringSet;
  24. }
  25.  
  26.  
  27. @end
  28.