#include <string>
#include <vector>
-#include <iostream>
+#include <ostream>
template <class T>
};
-
+template < typename T >
+std::ostream& operator<< (std::ostream& os, CIndiceMagico<T>& im)
+{
+ for (unsigned i = 0; i < im.count(); ++i)
+ os << "\t" << im.keys(i) << "=" << im[i] << "\n";
+ return os;
+}
#endif