home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-06-15 | 421 b | 27 lines | [TEXT/CWIE] |
- // FileCreator.cp
-
- #ifndef FileCreator_h
- #include "FileCreator.h"
- #endif
-
- Task *FileCreator::operator()( const FSSpec& spec )
- {
- Assert( !Running() );
-
- fileParam.ioVRefNum = spec.vRefNum;
- fileParam.ioNamePtr = const_cast<StringPtr>( spec.name );
- fileParam.ioDirID = spec.parID;
-
- return this;
- }
-
- void FileCreator::Launch()
- {
- Assert( !Running() );
- PBHCreateAsync( this );
- }
-
- void FileCreator::Kill()
- {
- }
-