MCPcopy Create free account
hub / github.com/JSBSim-Team/jsbsim / QueryPropertyCatalog

Method QueryPropertyCatalog

src/FGFDMExec.cpp:1113–1121  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1111//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1112
1113string FGFDMExec::QueryPropertyCatalog(const string& in, const string& end_of_line)
1114{
1115 string results;
1116 for (auto &catalogElm: PropertyCatalog) {
1117 if (catalogElm.find(in) != string::npos) results += catalogElm + end_of_line;
1118 }
1119 if (results.empty()) return "No matches found"+end_of_line;
1120 return results;
1121}
1122
1123//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1124

Callers 1

ReadMethod · 0.80

Calls 1

emptyMethod · 0.80

Tested by

no test coverage detected