home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_11_07 / file.c < prev    next >
Text File  |  1993-01-07  |  298b  |  17 lines

  1. /*** File Class Implementation: file.c ***/
  2.  
  3. #include "file.h"
  4.  
  5. CONSTRUCTOR(File,())
  6.     CONSTRUCT(Object,())
  7. END_CONSTRUCTOR
  8.  
  9. DESTRUCTOR(File)
  10. END_DESTRUCTOR
  11.  
  12. DEF_CLASS(File,Object)
  13.     DEF_ABSTRACT(File,Seek);
  14.     DEF_ABSTRACT(File,Read);
  15.     DEF_ABSTRACT(File,Write);
  16. END_CLASS
  17.