| 240 | |
| 241 | |
| 242 | void main_identify() |
| 243 | { |
| 244 | cout << "test program\n"; |
| 245 | cout << string(13, '-') << "\n"; |
| 246 | |
| 247 | const string strSystem = GetSystem(); |
| 248 | cout << left << setw(13) << "System" << |
| 249 | setw(20) << right << strSystem << "\n"; |
| 250 | |
| 251 | const string strBits = GetBits(); |
| 252 | cout << left << setw(13) << "Word size" << |
| 253 | setw(20) << right << strBits << "\n"; |
| 254 | |
| 255 | const string strCompiler = GetCompiler(); |
| 256 | cout << left << setw(13) << "Compiler" << |
| 257 | setw(20) << right << strCompiler << "\n\n"; |
| 258 | } |
| 259 | |
| 260 | |
| 261 |
no test coverage detected