]> git.mxchange.org Git - simgear.git/commitdiff
Add a small accessor function to expose local timezone offset.
authorcurt <curt>
Thu, 17 Nov 2005 15:30:07 +0000 (15:30 +0000)
committercurt <curt>
Thu, 17 Nov 2005 15:30:07 +0000 (15:30 +0000)
simgear/timing/sg_time.hxx

index 24175e2e569e22e73a141b5f5ecbc810b34e4d9d..5037f54191b269b77bb998ad81388a8a8016305e 100644 (file)
@@ -192,6 +192,9 @@ public:
 
     /** @return grenich side real time (lst when longitude == 0) */
     inline double getGst() const { return gst; };
+
+    /** @return offset in seconds to local timezone time */
+    inline time_t get_local_offset() const { return local_offset; };
 };