Add a small accessor function to expose local timezone offset.

This commit is contained in:
curt 2005-11-17 15:30:07 +00:00
parent f196d3bab8
commit 61984730ac

View File

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