parameterRemapUnchanged.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. // Filename: parameterRemapUnchanged.h
  2. // Created by: drose (01Aug00)
  3. //
  4. ////////////////////////////////////////////////////////////////////
  5. //
  6. // PANDA 3D SOFTWARE
  7. // Copyright (c) 2001, 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://www.panda3d.org/license.txt .
  13. //
  14. // To contact the maintainers of this program write to
  15. // [email protected] .
  16. //
  17. ////////////////////////////////////////////////////////////////////
  18. #ifndef PARAMETERREMAPUNCHANGED_H
  19. #define PARAMETERREMAPUNCHANGED_H
  20. #include <dtoolbase.h>
  21. #include "parameterRemap.h"
  22. ////////////////////////////////////////////////////////////////////
  23. // Class : ParameterRemapUnchanged
  24. // Description : A ParameterRemap class that represents no change to
  25. // the parameter: the parameter type is legal as is.
  26. ////////////////////////////////////////////////////////////////////
  27. class ParameterRemapUnchanged : public ParameterRemap {
  28. public:
  29. ParameterRemapUnchanged(CPPType *orig_type);
  30. };
  31. #endif