home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c082_144 / 9.ddi / TVSRC.ZIP / SFINPUTL.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1992-06-10  |  1.4 KB  |  37 lines

  1. /*------------------------------------------------------------*/
  2. /* filename -       sfinputl.cpp                              */
  3. /*                                                            */
  4. /* Registeration object for the class TFileInputLine          */
  5. /*------------------------------------------------------------*/
  6.  
  7. /*------------------------------------------------------------*/
  8. /*                                                            */
  9. /*    Turbo Vision -  Version 1.0                             */
  10. /*                                                            */
  11. /*                                                            */
  12. /*    Copyright (c) 1991 by Borland International             */
  13. /*    All Rights Reserved.                                    */
  14. /*                                                            */
  15. /*------------------------------------------------------------*/
  16.  
  17. #define Uses_TFileInputLine
  18. #define Uses_TStreamableClass
  19. #include <tv.h>
  20. __link( RInputLine )
  21.  
  22. TFileInputLine::TFileInputLine( StreamableInit ) :
  23.                 TInputLine( streamableInit)
  24. {
  25.  
  26. TStreamable *TFileInputLine::build()
  27. {
  28.     return new TFileInputLine( streamableInit );
  29. }
  30.  
  31. TStreamableClass RFileInputLine( TFileInputLine::name,
  32.                                  TFileInputLine::build,
  33.                                 __DELTA(TFileInputLine)
  34.                                );
  35.  
  36.