Leaked source code of windows server 2003
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.

64 lines
1.0 KiB

  1. /*++
  2. Copyright (C) 1996-1999 Microsoft Corporation
  3. Module Name:
  4. RESID.INL
  5. History:
  6. --*/
  7. //
  8. // Inline funxtions for the Resource ID. This file should ONLY be included
  9. // by resid.h.
  10. //
  11. //-----------------------------------------------------------------------------
  12. //
  13. // File: resid.inl
  14. //
  15. //-----------------------------------------------------------------------------
  16. //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  17. //
  18. // All methods directed to base class
  19. //
  20. //-----------------------------------------------------------------------------
  21. inline
  22. CLocResId::CLocResId()
  23. {}
  24. inline
  25. const CLocResId &
  26. CLocResId::operator=(
  27. const CLocResId & locId)
  28. {
  29. CLocId::operator=(locId);
  30. return *this;
  31. }
  32. inline
  33. int
  34. CLocResId::operator==(
  35. const CLocResId & locId)
  36. const
  37. {
  38. return CLocId::operator==(locId);
  39. }
  40. inline
  41. int
  42. CLocResId::operator!=(
  43. const CLocResId & locId)
  44. const
  45. {
  46. return CLocId::operator!=(locId);
  47. }