| Line 562... |
Line 562... |
| 562 |
{
|
562 |
{
|
| 563 |
printf ( "Cockpit Entries:\n" );
|
563 |
printf ( "Cockpit Entries:\n" );
|
| 564 |
for ( SCockpit *c = pXspFile->GetCockpits()->First(); c; c = pXspFile->GetCockpits()->Next() )
|
564 |
for ( SCockpit *c = pXspFile->GetCockpits()->First(); c; c = pXspFile->GetCockpits()->Next() )
|
| 565 |
printf("\t%s\n", c->sCockpit.c_str());
|
565 |
printf("\t%s\n", c->sCockpit.c_str());
|
| 566 |
}
|
566 |
}
|
| 567 |
if ( pXspFile->AnyCutData() )
|
567 |
if ( pXspFile->anyCutData() )
|
| 568 |
{
|
568 |
{
|
| 569 |
printf ( "CutData Entries [%d]:\n", pXspFile->GetCutData()->Count() );
|
569 |
printf ( "CutData Entries [%d]:\n", pXspFile->getCutData().size() );
|
| 570 |
for ( SStringList *c = pXspFile->GetCutData()->Head(); c; c = c->next )
|
570 |
for(auto itr = pXspFile->getCutData().begin(); itr != pXspFile->getCutData().end(); itr++)
|
| 571 |
printf("\t%s\n", c->str.c_str());
|
571 |
printf("\t%s\n", (*itr)->str.c_str());
|
| 572 |
}
|
572 |
}
|
| 573 |
}
|
573 |
}
|
| 574 |
|
574 |
|
| 575 |
if ( !pBaseFile->creationDate().empty() ) printf ( "Creation Date: %s\n", pBaseFile->creationDate().c_str() );
|
575 |
if ( !pBaseFile->creationDate().empty() ) printf ( "Creation Date: %s\n", pBaseFile->creationDate().c_str() );
|
| 576 |
if ( !pBaseFile->description().empty() ) printf ( "Description: %s\n", pBaseFile->description().c_str() );
|
576 |
if ( !pBaseFile->description().empty() ) printf ( "Description: %s\n", pBaseFile->description().c_str() );
|