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.

58 lines
1.2 KiB

  1. //-----------------------------------------------------------------------------
  2. //
  3. // File: resid.inl
  4. // Copyright (C) 1994-1997 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // Inline funxtions for the Resource ID. This file should ONLY be included
  8. // by resid.h.
  9. //
  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. }