Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
516 B

  1. /***
  2. *ti_inst.cxx - One instance of class typeinfo.
  3. *
  4. * Copyright (c) 1995-2001, 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. *Revision History:
  12. *
  13. * 02/27/95 JWM Module created
  14. *
  15. ****/
  16. #define _TICORE
  17. #include <typeinfo.h>
  18. type_info::type_info(const type_info& rhs)
  19. {
  20. }
  21. type_info& type_info::operator=(const type_info& rhs)
  22. {
  23. return *this;
  24. }