]> git.mxchange.org Git - simgear.git/commitdiff
Add const accessors.
authorfrohlich <frohlich>
Tue, 17 Mar 2009 12:23:15 +0000 (12:23 +0000)
committerTim Moore <timoore@redhat.com>
Wed, 18 Mar 2009 06:53:51 +0000 (07:53 +0100)
Modified Files:
simgear/ephemeris/ephemeris.hxx

simgear/ephemeris/ephemeris.hxx

index e5579bdbf997852fd595b1fd5390a32083db8b35..398eb3ef2421c13a372611e3c1e17c64bb5eada7 100644 (file)
@@ -158,6 +158,7 @@ public:
      * @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(); }
@@ -170,6 +171,7 @@ public:
      * @returns star array
      */
     inline SGVec3d *getStars() { return stars->getStars(); }
+    inline const SGVec3d *getStars() const { return stars->getStars(); }
 };