iffChunk.I 617 B

1234567891011121314151617181920212223242526272829303132333435
  1. /**
  2. * PANDA 3D SOFTWARE
  3. * Copyright (c) Carnegie Mellon University. All rights reserved.
  4. *
  5. * All use of this software is subject to the terms of the revised BSD
  6. * license. You should have received a copy of this license along
  7. * with this source code in a file named "LICENSE."
  8. *
  9. * @file iffChunk.I
  10. * @author drose
  11. * @date 2001-04-23
  12. */
  13. /**
  14. *
  15. */
  16. INLINE IffChunk::
  17. IffChunk() {
  18. }
  19. /**
  20. * Returns the ID associated with this chunk.
  21. */
  22. INLINE IffId IffChunk::
  23. get_id() const {
  24. return _id;
  25. }
  26. /**
  27. * Changes the ID associated with this chunk.
  28. */
  29. INLINE void IffChunk::
  30. set_id(IffId id) {
  31. _id = id;
  32. }