////////////////////////////////////////////////////////////////////////// PrintFCOShort //////////////////////////////////////////////////////////////////////////
| 238 | // PrintFCOShort |
| 239 | /////////////////////////////////////////////////////////////////////////////// |
| 240 | static void |
| 241 | PrintFCOShort(const iFCO* pFCO, const iFCOPropDisplayer* pPD, const iFCONameTranslator* pNT, TOSTREAM* pOut, int margin) |
| 242 | { |
| 243 | ASSERT(pOut != 0); |
| 244 | |
| 245 | TSTRING strDetails; |
| 246 | |
| 247 | // |
| 248 | // output "<name of FCO>"\n\t<details of FCO>" |
| 249 | // |
| 250 | (*pOut) << _T(" "); |
| 251 | (*pOut) << pNT->ToStringDisplay(pFCO->GetName()).c_str(); |
| 252 | (*pOut) << endl; |
| 253 | (*pOut) << setw(margin) << _T(""); |
| 254 | pPD->GetDetails(pFCO, strDetails); |
| 255 | (*pOut) << strDetails; |
| 256 | (*pOut) << _T("\n"); |
| 257 | } |
| 258 | |
| 259 | |
| 260 | static void OutputIterChildren(cDbDataSourceIter dbIter, |
no test coverage detected