home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / vc98 / crt / src / ti_inst.cpp < prev    next >
C/C++ Source or Header  |  1998-06-17  |  516b  |  26 lines

  1. /***
  2. *ti_inst.cxx - One instance of class typeinfo.
  3. *
  4. *       Copyright (c) 1995-1997, Microsoft Corporation. All rights reserved.
  5. *
  6. *Purpose:
  7. *       This module insures that an instance of class type_info
  8. *       will be present in msvcrt.lib, providing access to type_info's
  9. *       vftable when compiling MD.
  10. *
  11. ****/
  12.  
  13. #define _TICORE
  14. #include <typeinfo.h>
  15.  
  16. type_info::type_info(const type_info& rhs)
  17. {
  18. }
  19.  
  20. type_info& type_info::operator=(const type_info& rhs)
  21. {
  22.         return *this;
  23. }
  24.  
  25.  
  26.