////////////////////////////////////////////////////////////////////////// PrintPropVector -- function that prints the contents of a cFCOPropVector //////////////////////////////////////////////////////////////////////////
| 40 | // PrintPropVector -- function that prints the contents of a cFCOPropVector |
| 41 | /////////////////////////////////////////////////////////////////////////////// |
| 42 | static void PrintPropVector(const cFCOPropVector& v, cDebug& d) |
| 43 | { |
| 44 | TOSTRINGSTREAM stream; |
| 45 | for (int i = 0; i < v.GetSize(); i++) |
| 46 | { |
| 47 | if (v.ContainsItem(i)) |
| 48 | stream << i << "," |
| 49 | << " "; |
| 50 | } |
| 51 | stream << std::ends; |
| 52 | d.TraceDebug("%s\n", stream.str().c_str()); |
| 53 | } |
| 54 | |
| 55 | void TestFSPropSet() |
| 56 | { |