home *** CD-ROM | disk | FTP | other *** search
- /* Generated by me! */
- // Created By James T. Romano July 22, 1992
- // Member of the Dynamic Duo of NeXT Computers!
- //
- //
- // Read it and Weep!
-
- #import "deCompObject.h"
-
- @implementation deComp
-
- - deCompressFile:(const char *)file
- {
- char actionMsg[1024];
-
- sprintf(actionMsg,"uncompress %s",file);
- system(actionMsg);
- sprintf(actionMsg,"File %s has been uncompressed",file);
- NXRunAlertPanel("uncompress operation complete!",actionMsg,"OK",NULL,NULL);
- [NXApp delayedFree:self];
- return self;
- }
-
- - free
- {
- return [super free];
- }
- @end