You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
517 B
28 lines
517 B
with MMS.Input; |
|
with MMS.F_PT.Output; |
|
|
|
with Types; use Types; |
|
|
|
package MMS.F_EL.Input is |
|
|
|
-------------- |
|
-- From MMS -- |
|
-------------- |
|
|
|
function P return Distance_Type |
|
renames MMS.Input.P; |
|
|
|
function P_Dot return Speed_Type |
|
renames MMS.Input.P_Dot; |
|
|
|
function Q return Angle_Type |
|
renames MMS.Input.Q; |
|
|
|
--------------- |
|
-- From F_PT -- |
|
--------------- |
|
|
|
function Emergency_Landing return Boolean |
|
renames MMS.F_PT.Output.Emergency_Landing; |
|
|
|
end MMS.F_EL.Input;
|
|
|