| 715 | //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 716 | |
| 717 | vector <string> FGFDMExec::EnumerateFDMs(void) |
| 718 | { |
| 719 | vector <string> FDMList; |
| 720 | FDMList.push_back(Aircraft->GetAircraftName()); |
| 721 | |
| 722 | for (auto &ChildFDM: ChildFDMList) |
| 723 | FDMList.push_back(ChildFDM->exec->GetAircraft()->GetAircraftName()); |
| 724 | |
| 725 | return FDMList; |
| 726 | } |
| 727 | |
| 728 | //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 729 |
nothing calls this directly
no test coverage detected