home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1998 May / Pcwk5b98.iso / Borland / Cplus45 / BC45 / CLASSSRC.PAK / CASTABLE.CPP < prev    next >
C/C++ Source or Header  |  1995-08-29  |  879b  |  27 lines

  1. /*------------------------------------------------------------------------*/
  2. /*                                                                        */
  3. /*  CASTABLE.CPP                                                          */
  4. /*                                                                        */
  5. /*  Copyright (c) 1992, 1994 Borland International                        */
  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
  17.  
  18. TStreamableBase::~TStreamableBase()
  19. {
  20. }
  21.  
  22. void *TStreamableBase::FindBase( Type_id ) const
  23. {
  24.     return 0;
  25. }
  26.  
  27.