Advertisement
Guest User

Untitled

a guest
Apr 17th, 2014
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. FP_list[n].callsign=...
  2. FP_list[n].de_airport=...
  3. FP_list[n].ar_airport=...;
  4. FP_list[n].aircraft_type=...
  5. FP_list[n].trueairspeed=...
  6. FP_list[n].FL_route.push_back(Aircraft.GetClearedAltitude());
  7. FP_list[n].last_WP=...
  8. FP_list[n].next_WP=...
  9.  
  10. FP temp=FP_list[n];
  11. temp.callsign=...
  12. ...
  13. temp.next_WP=...
  14.  
  15. FP& p = FP_list[n];
  16. ^^^ use a reference
  17. p.callsign = ...;
  18. p.de_airport = ...;
  19. p.ar_airport = ...;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement