home *** CD-ROM | disk | FTP | other *** search
- #import "DAAbout.h"
-
-
- NSString *version = @"version";
- NSString *bundle = @"bundle";
- NSString *path = @"path";
-
- @implementation DAAbout
-
- static DAAbout *_shared_about = nil;
-
- + (id)shared
- {
- if ( _shared_about == nil )
- _shared_about = [[DAAbout alloc] init];
-
- return _shared_about;
- }
-
- - (void)display:sender
- {
- [super display:sender];
- }
-
- @end
-