home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c083 / 20.ddi / CLASSSRC.PAK / CASTABLE.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1993-12-02  |  905 b   |  27 lines

  1. /*------------------------------------------------------------------------*/
  2. /*                                                                        */
  3. /*  CASTABLE.CPP                                                          */
  4. /*                                                                        */
  5. /*  Copyright Borland International 1992, 1993                            */
  6. /*  All Rights Reserved                                                   */
  7. /*                                                                        */
  8. /*------------------------------------------------------------------------*/
  9.  
  10. #if !defined( BI_NO_RTTI )
  11. #define BI_NO_RTTI
  12. #endif
  13.  
  14. #if !defined( __CLASSLIB_OBJSTRM_H )
  15. #include "classlib\objstrm.h"
  16. #endif    // __CLASSLIB_OBJSTRM_H
  17.  
  18. TStreamableBase::~TStreamableBase()
  19. {
  20. }
  21.  
  22. void *TStreamableBase::FindBase( Type_id ) const
  23. {
  24.     return 0;
  25. }
  26.  
  27.