diff --git a/libsgp4/DateTime.h b/libsgp4/DateTime.h index 6778d5a..f3d81f0 100644 --- a/libsgp4/DateTime.h +++ b/libsgp4/DateTime.h @@ -113,6 +113,21 @@ public: * @param[in] second the second * @param[in] microsecond the microsecond */ + DateTime(int year, int month, int day, int hour, int minute, int second, int microsecond) + { + Initialise(year, month, day, hour, minute, second, microsecond); + } + + /** + * Initialise to the given data and time. + * @param[in] year the year + * @param[in] month the month + * @param[in] day the day + * @param[in] hour the hour + * @param[in] minute the minute + * @param[in] second the second + * @param[in] microsecond the microsecond + */ void Initialise(int year, int month, int day,