Loading ttcn/Common/LibItsCommon_Functions.ttcn +20 −1 Original line number Diff line number Diff line Loading @@ -112,6 +112,19 @@ module LibItsCommon_Functions { return v_timeMark; } /** * @desc Gets the Minute of current UTC year * @return MinuteOfTheYear - tenths of a second in the current or next hour in units of 1/10th second from UTC time */ function f_getMinuteOfTheYear() return MinuteOfTheYear { var MinuteOfTheYear v_minuteOfTheYear := 0; // log("*** f_getMinuteOfTheYear: INFO: calling fx_getMinuteOfTheYear() ***"); v_minuteOfTheYear := fx_getMinuteOfTheYear(); return v_minuteOfTheYear; } } // end generalFunctions group itsFunctions { Loading Loading @@ -185,11 +198,17 @@ module LibItsCommon_Functions { external function fx_getCurrentTime() return TimestampIts; /** * @desc Gets the current time since 01/01/2004 * @desc Gets the tenths of a second in the current or next hour in units of 1/10th second from UTC time * @return TimeMark - tenths of a second in the current or next hour in units of 1/10th second from UTC time */ external function fx_getCurrentTimeMark() return UInt32; /** * @desc Gets the minutes of current UTC year * @return MinuteOfTheYear - minutes of current UTC year */ external function fx_getMinuteOfTheYear() return UInt16; /** * @desc External function to compute distance between two points * @param p_latitudeA Latitude of first point Loading Loading
ttcn/Common/LibItsCommon_Functions.ttcn +20 −1 Original line number Diff line number Diff line Loading @@ -112,6 +112,19 @@ module LibItsCommon_Functions { return v_timeMark; } /** * @desc Gets the Minute of current UTC year * @return MinuteOfTheYear - tenths of a second in the current or next hour in units of 1/10th second from UTC time */ function f_getMinuteOfTheYear() return MinuteOfTheYear { var MinuteOfTheYear v_minuteOfTheYear := 0; // log("*** f_getMinuteOfTheYear: INFO: calling fx_getMinuteOfTheYear() ***"); v_minuteOfTheYear := fx_getMinuteOfTheYear(); return v_minuteOfTheYear; } } // end generalFunctions group itsFunctions { Loading Loading @@ -185,11 +198,17 @@ module LibItsCommon_Functions { external function fx_getCurrentTime() return TimestampIts; /** * @desc Gets the current time since 01/01/2004 * @desc Gets the tenths of a second in the current or next hour in units of 1/10th second from UTC time * @return TimeMark - tenths of a second in the current or next hour in units of 1/10th second from UTC time */ external function fx_getCurrentTimeMark() return UInt32; /** * @desc Gets the minutes of current UTC year * @return MinuteOfTheYear - minutes of current UTC year */ external function fx_getMinuteOfTheYear() return UInt16; /** * @desc External function to compute distance between two points * @param p_latitudeA Latitude of first point Loading