| 45 | /////////////////////////////////////////////////////////////////////////////// |
| 46 | |
| 47 | static void PrintProps(const iFCO* pFCO) |
| 48 | { |
| 49 | cDebug d("PrintProps"); |
| 50 | const iFCOPropSet* pSet = pFCO->GetPropSet(); |
| 51 | const cFCOPropVector& v = pSet->GetValidVector(); |
| 52 | |
| 53 | for (int i = 0; i < pSet->GetNumProps(); i++) |
| 54 | { |
| 55 | if (v.ContainsItem(i)) |
| 56 | { |
| 57 | d.TraceDebug(_T("[%d] %s\t%s\n"), i, pSet->GetPropName(i).c_str(), pSet->GetPropAt(i)->AsString().c_str()); |
| 58 | } |
| 59 | } |
| 60 | } |
| 61 | |
| 62 | |
| 63 | void TestFCOCompare() |