]> git.mxchange.org Git - simgear.git/commitdiff
Const-ify some ephemeris accessors, so they can be tied.
authorJames Turner <jmt@Dulux.local>
Mon, 14 Jun 2010 09:23:06 +0000 (10:23 +0100)
committerJames Turner <jmt@Dulux.local>
Mon, 14 Jun 2010 09:23:06 +0000 (10:23 +0100)
simgear/ephemeris/celestialBody.hxx
simgear/ephemeris/star.hxx

index 6572a45c2fc114d801af1e0f1ddf131b007c1b6f..e555deef54078e7e1483a1d88bd20ba84bcc83cd 100644 (file)
@@ -81,8 +81,8 @@ public:
   double getRightAscension();
   double getDeclination();
   double getMagnitude();
-  double getLon();
-  double getLat(); 
+  double getLon() const;
+  double getLat() const
   void updatePosition(double mjd, Star *ourSun);
 };
 
@@ -90,12 +90,12 @@ inline double CelestialBody::getRightAscension() { return rightAscension; }
 inline double CelestialBody::getDeclination() { return declination; }
 inline double CelestialBody::getMagnitude() { return magnitude; }
 
-inline double CelestialBody::getLon()
+inline double CelestialBody::getLon() const
 {
   return lonEcl;
 }
 
-inline double CelestialBody::getLat()
+inline double CelestialBody::getLat() const
 {
   return latEcl;
 }
index 781cfcd602beda0760bba89b412ee7f1a1b294f1..838cbce70e0d9e8ad56fbcd345d26987565fa0a2 100644 (file)
@@ -43,47 +43,47 @@ public:
     Star ();
     ~Star();
     void updatePosition(double mjd);
-    double getM();
-    double getw();
-    double getxs();
-    double getys();
-    double getye();
-    double getze();
-    double getDistance();
+    double getM() const;
+    double getw() const;
+    double getxs() const;
+    double getys() const;
+    double getye() const;
+    double getze() const;
+    double getDistance() const;
 };
 
 
-inline double Star::getM()
+inline double Star::getM() const
 {
   return M;
 }
 
-inline double Star::getw()
+inline double Star::getw() const
 {
   return w;
 }
 
-inline double Star::getxs()
+inline double Star::getxs() const
 {
   return xs;
 }
 
-inline double Star::getys()
+inline double Star::getys() const
 {
   return ys;
 }
 
-inline double Star::getye()
+inline double Star::getye() const
 {
    return ye;
 }
 
-inline double Star::getze()
+inline double Star::getze() const
 {
    return ze;
 }
 
-inline double Star::getDistance()
+inline double Star::getDistance() const
 {
   return distance;
 }