home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-06-13 | 348 b | 23 lines | [TEXT/CWIE] |
- // FileCreator.h
-
- #ifndef FileCreator_h
- #define FileCreator_h
-
- #ifndef HParamBlockTask_h
- #include "HParamBlockTask.h"
- #endif
-
- class FileCreator: private HParamBlockTask
- {
- private:
- virtual void Launch();
- virtual void Kill();
-
- public:
- Task *operator()( const FSSpec& );
-
- OSErr Error() const { return ioParam.ioResult; }
- };
-
- #endif
-