Files
simgear/simgear/scene/model/persparam.cxx
ThorstenB 7b0c25f91e #83: John Denker: Set correct file modes
Sources shouldn't be executable.
2011-02-19 11:54:10 +01:00

21 lines
451 B
C++

/**
* $Id$
*/
#ifdef HAVE_CONFIG_H
# include <simgear_config.h>
#endif
#include <simgear/props/props.hxx>
#include "persparam.hxx"
#include <simgear/math/SGMath.hxx>
template <> double
SGPersonalityParameter<double>::getNodeValue( const SGPropertyNode *props,
const char *name,
double defval ) const
{
return props->getDoubleValue( name, defval );
}