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

  1. /*------------------------------------------------------------*/
  2. /* filename -       seditors.cpp                              */
  3. /*                                                            */
  4. /* Registeration objects for the following classes:           */
  5. /*                      TIndicator                            */
  6. /*                      TEditor                               */
  7. /*                      TView                                 */
  8. /*                      TMemo                                 */
  9. /*                      TFileEditor                           */
  10. /*                      TEditWindow                           */
  11. /*------------------------------------------------------------*/
  12.                                                               
  13. /*------------------------------------------------------------*/
  14. /*                                                            */
  15. /*    Turbo Vision -  Version 1.0                             */
  16. /*                                                            */
  17. /*                                                            */
  18. /*    Copyright (c) 1991 by Borland International             */
  19. /*    All Rights Reserved.                                    */
  20. /*                                                            */
  21. /*------------------------------------------------------------*/
  22.  
  23. #define Uses_TIndicator
  24. #define Uses_TEditor
  25. #define Uses_TMemo
  26. #define Uses_TFileEditor
  27. #define Uses_TEditWindow
  28. #define Uses_TStreamableClass
  29. #include <tv.h>
  30. __link( RView )
  31. __link( RWindow )
  32. __link( RScrollBar ) 
  33.  
  34. TStreamableClass RIndicator( TIndicator::name,
  35.                              TIndicator::build,
  36.                              __DELTA(TIndicator)    
  37.                            );
  38.  
  39. TStreamableClass REditor( TEditor::name,
  40.                           TEditor::build,
  41.                           __DELTA(TEditor)
  42.                         );
  43.  
  44. TStreamableClass RMemo( TMemo::name,
  45.                         TMemo::build,
  46.                         __DELTA(TMemo)
  47.                       );
  48.  
  49. TStreamableClass RFileEditor( TFileEditor::name,
  50.                               TFileEditor::build,
  51.                               __DELTA(TFileEditor)
  52.                             );
  53.  
  54. TStreamableClass REditWindow( TEditWindow::name,
  55.                               TEditWindow::build,
  56.                               __DELTA(TEditWindow)
  57.                             );
  58.  
  59.