Ignore:
Timestamp:
Feb 24, 2002, 3:47:28 AM (24 years ago)
Author:
bird
Message:

New kFile* classes; now in sync with os2tools.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tools/common/kFileFormatBase.h

    r6066 r8003  
    1 /* $Id: kFileFormatBase.h,v 1.6 2001-06-22 17:07:47 bird Exp $
     1/* $Id: kFileFormatBase.h,v 1.7 2002-02-24 02:47:25 bird Exp $
    22 *
    33 * kFileFormatBase - Base class for kFile<format> classes.
     
    3333{
    3434public:
     35    virtual KBOOL isDef() const { return FALSE;}
     36    virtual KBOOL isPe() const  { return FALSE;}
     37    virtual KBOOL isLx() const  { return FALSE;}
     38    virtual KBOOL dump(kFile *pOut);
    3539
    36     virtual ~kFileFormatBase();
     40    kFileFormatBase(kFile *pFile) throw (kError);
     41    virtual ~kFileFormatBase() throw (kError);
    3742
    38     virtual BOOL  isDef() const { return FALSE;}
    39     virtual BOOL  isPe() const  { return FALSE;}
    40     virtual BOOL  isLx() const  { return FALSE;}
    41     virtual BOOL  dump(kFile *pOut);
    42 
     43protected:
     44    kFile *pFile;
    4345};
    4446
Note: See TracChangeset for help on using the changeset viewer.