| 129 | //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 130 | |
| 131 | std::shared_ptr<FGFunction> FGModelFunctions::GetPreFunction(const std::string& name) |
| 132 | { |
| 133 | for (auto& prefunc: PreFunctions) { |
| 134 | if (prefunc->GetName() == name) |
| 135 | return prefunc; |
| 136 | } |
| 137 | |
| 138 | return nullptr; |
| 139 | } |
| 140 | |
| 141 | //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 142 |