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

Function itostr

utils/simplot/prep_plot.cpp:126–131  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

124 stringstream& plot);
125void PrintNames(const vector <string>&);
126string itostr(int number)
127{
128 stringstream ss; // create a stringstream
129 ss << number; // add number to the stream
130 return ss.str(); // return a string with the contents of the stream
131}
132
133int main(int argc, char **argv)
134{

Callers 1

mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected