Modified Files:
simgear/ephemeris/ephemeris.hxx
* @return planets array
*/
inline SGVec3d *getPlanets() { return planets; }
+ inline const SGVec3d *getPlanets() const { return planets; }
/** @return the numbers of defined stars. */
inline int getNumStars() const { return stars->getNumStars(); }
* @returns star array
*/
inline SGVec3d *getStars() { return stars->getStars(); }
+ inline const SGVec3d *getStars() const { return stars->getStars(); }
};