1 /**
2  * $Id$
3  */
4 
5 #ifdef HAVE_CONFIG_H
6 #  include <simgear_config.h>
7 #endif
8 
9 #include <simgear/props/props.hxx>
10 #include "persparam.hxx"
11 
12 template <> double
getNodeValue(const SGPropertyNode * props,const char * name,double defval) const13 SGPersonalityParameter<double>::getNodeValue( const SGPropertyNode *props,
14                                               const char *name,
15                                               double defval ) const
16 {
17   return props->getDoubleValue( name, defval );
18 }
19