virtualFileMountSystem.I 1.2 KB

1234567891011121314151617181920212223242526272829303132
  1. // Filename: virtualFileMountSystem.I
  2. // Created by: drose (03Aug02)
  3. //
  4. ////////////////////////////////////////////////////////////////////
  5. //
  6. // PANDA 3D SOFTWARE
  7. // Copyright (c) 2001 - 2004, Disney Enterprises, Inc. All rights reserved
  8. //
  9. // All use of this software is subject to the terms of the Panda 3d
  10. // Software license. You should have received a copy of this license
  11. // along with this source code; you will also find a current copy of
  12. // the license at http://etc.cmu.edu/panda3d/docs/license/ .
  13. //
  14. // To contact the maintainers of this program write to
  15. // [email protected] .
  16. //
  17. ////////////////////////////////////////////////////////////////////
  18. ////////////////////////////////////////////////////////////////////
  19. // Function: VirtualFileMountSystem::Constructor
  20. // Access: Public
  21. // Description:
  22. ////////////////////////////////////////////////////////////////////
  23. INLINE VirtualFileMountSystem::
  24. VirtualFileMountSystem(VirtualFileSystem *file_system,
  25. const Filename &physical_filename,
  26. const Filename &mount_point,
  27. int mount_flags) :
  28. VirtualFileMount(file_system, physical_filename, mount_point, mount_flags)
  29. {
  30. }