home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / Rhapsody / Graphics / ImageBrowser-1.0 / DAAbout.m < prev    next >
Encoding:
Text File  |  1998-01-11  |  360 b   |  26 lines

  1. #import "DAAbout.h"
  2.  
  3.  
  4. NSString *version = @"version";
  5. NSString *bundle = @"bundle";
  6. NSString *path = @"path";
  7.  
  8. @implementation DAAbout
  9.  
  10. static    DAAbout    *_shared_about = nil;
  11.  
  12. + (id)shared
  13. {
  14.     if ( _shared_about == nil )
  15.         _shared_about = [[DAAbout alloc] init];
  16.  
  17.     return _shared_about;
  18. }
  19.  
  20. - (void)display:sender
  21. {
  22.     [super display:sender];
  23. }
  24.  
  25. @end
  26.