historical/toontown-classic.git/panda/include/parameterRemapUnchanged.h
2024-01-16 11:20:27 -06:00

30 lines
725 B
C++

/**
* PANDA 3D SOFTWARE
* Copyright (c) Carnegie Mellon University. All rights reserved.
*
* All use of this software is subject to the terms of the revised BSD
* license. You should have received a copy of this license along
* with this source code in a file named "LICENSE."
*
* @file parameterRemapUnchanged.h
* @author drose
* @date 2000-08-01
*/
#ifndef PARAMETERREMAPUNCHANGED_H
#define PARAMETERREMAPUNCHANGED_H
#include "dtoolbase.h"
#include "parameterRemap.h"
/**
* A ParameterRemap class that represents no change to the parameter: the
* parameter type is legal as is.
*/
class ParameterRemapUnchanged : public ParameterRemap {
public:
ParameterRemapUnchanged(CPPType *orig_type);
};
#endif