%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
| 141 | |
| 142 | //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 143 | bool JSBSimInterface::LoadIC(SGPath ResetName) |
| 144 | { |
| 145 | try { |
| 146 | auto IC = fdmExec->GetIC(); |
| 147 | |
| 148 | if (!IC->Load(ResetName)) return false; |
| 149 | |
| 150 | if (!fdmExec->RunIC()) return false; |
| 151 | |
| 152 | return true; |
| 153 | } catch (const LogException& e) { |
| 154 | mexPrintf(e.what()); |
| 155 | return false; |
| 156 | } |
| 157 | } |
| 158 | |
| 159 | //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 160 | void JSBSimInterface::Update() |
no test coverage detected