eggUserData.I 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. // Filename: eggUserData.I
  2. // Created by: drose (03Jun03)
  3. //
  4. ////////////////////////////////////////////////////////////////////
  5. //
  6. // PANDA 3D SOFTWARE
  7. // Copyright (c) Carnegie Mellon University. All rights reserved.
  8. //
  9. // All use of this software is subject to the terms of the revised BSD
  10. // license. You should have received a copy of this license along
  11. // with this source code in a file named "LICENSE."
  12. //
  13. ////////////////////////////////////////////////////////////////////
  14. ////////////////////////////////////////////////////////////////////
  15. // Function: EggUserData::Constructor
  16. // Access: Public
  17. // Description:
  18. ////////////////////////////////////////////////////////////////////
  19. INLINE EggUserData::
  20. EggUserData() {
  21. }
  22. ////////////////////////////////////////////////////////////////////
  23. // Function: EggUserData::Copy constructor
  24. // Access: Public
  25. // Description:
  26. ////////////////////////////////////////////////////////////////////
  27. INLINE EggUserData::
  28. EggUserData(const EggUserData &copy) : TypedReferenceCount(copy) {
  29. }
  30. ////////////////////////////////////////////////////////////////////
  31. // Function: EggUserData::Copy assignment operator
  32. // Access: Public
  33. // Description:
  34. ////////////////////////////////////////////////////////////////////
  35. INLINE EggUserData &EggUserData::
  36. operator = (const EggUserData &copy) {
  37. TypedReferenceCount::operator = (copy);
  38. return *this;
  39. }