Commit 77ab5aa2 authored by Marco Buttu's avatar Marco Buttu
Browse files

Fix #83: argument time clashes with alma.ACS.Time

parent c6fb7161
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -245,11 +245,11 @@ module Receivers {
         *  If the time is lesser the the older one stored in the queue,
         *  then it returns oldest position.
         *  If the time is in advance or 0, it returns the latest position.
         *  @arg time the time related to the position we want to get
         *  @arg t the time related to the position we want to get
         *  @return the position
         *  @throw ComponentError::ComponentErrorsEx
         */
         double getPositionFromHistory(in ACS::Time time) raises (ComponentErrors::ComponentErrorsEx);
         double getPositionFromHistory(in ACS::Time t) raises (ComponentErrors::ComponentErrorsEx);


        /** Return the commanded position in the user reference system
+2 −2
Original line number Diff line number Diff line
@@ -171,11 +171,11 @@ module Receivers {
         *  If the time is lesser the the older one stored in the queue,
         *  then it returns oldest position.
         *  If the time is in advance or 0, it returns the latest position.
         *  @arg time the time related to the position we want to get
         *  @arg t the time related to the position we want to get
         *  @return the position
         *  @throw ComponentError::ComponentErrorsEx
         */
         double getPositionFromHistory(in ACS::Time time) raises (ComponentErrors::ComponentErrorsEx);
         double getPositionFromHistory(in ACS::Time t) raises (ComponentErrors::ComponentErrorsEx);


        /**