home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 October / Chip_1997-10_cd.bin / tema / sybase / powerj / hpp.z / IFILLEDT.HPP < prev    next >
C/C++ Source or Header  |  1996-07-11  |  507b  |  17 lines

  1. #ifndef _IFILLEDT_HPP
  2. #define _IFILLEDT_HPP
  3.  
  4. class DTCodeBlockBase;
  5. class WStringList;
  6. class WCMDEF IFillEventEditor
  7. {
  8.     public:
  9.         virtual WFilePath * IFGetPath() = 0;
  10.         virtual void IFAddBlankLine() = 0;
  11.         virtual void IFAppendEvent( DTCodeBlockBase * cb ) = 0;
  12.         virtual void IFAddEvent( DTCodeBlockBase * cb ) = 0;
  13.         virtual void IFAddSourceAndBreaks( WStringList &source, DTCodeBlockBase *cb, bool readonly, int at = -1 ) = 0;
  14. };
  15.  
  16. #endif // _IFILLEDT_HPP
  17.