home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1998 / MacHack 1998.toast / Sessions / Completions / Completions Source / Files / FileFlusher.h < prev    next >
Encoding:
Text File  |  1998-06-15  |  348 b   |  25 lines  |  [TEXT/CWIE]

  1. // FileFlusher.h
  2.  
  3. #ifndef FileFlusher_h
  4. #define FileFlusher_h
  5.  
  6. #ifndef ParamBlockTask_h
  7. #include "ParamBlockTask.h"
  8. #endif
  9.  
  10. class FileWritingPath;
  11.  
  12. class FileFlusher: public ParamBlockTask
  13.   {
  14.     private:
  15.         virtual void Launch();
  16.         virtual void Kill();
  17.     
  18.     public:
  19.         Task *operator()( const FileWritingPath& );
  20.         
  21.         OSErr Result() const;
  22.   };
  23.  
  24. #endif
  25.