| 124 | stringstream& plot); |
| 125 | void PrintNames(const vector <string>&); |
| 126 | string 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 | |
| 133 | int main(int argc, char **argv) |
| 134 | { |