mirror of
https://github.com/OpenVSP/OpenVSP.git
synced 2026-03-13 10:13:08 +08:00
22 lines
469 B
Plaintext
22 lines
469 B
Plaintext
void main()
|
|
{
|
|
array< string > @results_array = GetAllResultsNames();
|
|
|
|
for ( int i = 0; i < int( results_array.size() ); i++ )
|
|
{
|
|
Print( results_array[i] );
|
|
string resid = FindLatestResultsID( results_array[i] );
|
|
PrintResults( resid );
|
|
Print( "" );
|
|
}
|
|
|
|
|
|
//==== Check For API Errors ====//
|
|
while ( GetNumTotalErrors() > 0 )
|
|
{
|
|
ErrorObj err = PopLastError();
|
|
Print( err.GetErrorString() );
|
|
}
|
|
|
|
}
|