19 #ifndef INCLUDE_SF_QMAP_HPP 20 #define INCLUDE_SF_QMAP_HPP 24 #include <SF/SerializeStl.hpp> 29 template<
typename K,
typename T>
30 inline void serialize_vc6(Archive &ar, QMap<K,T> &t,
const unsigned int)
32 typedef typename QMap<K,T>::iterator Iterator;
33 typedef typename QMap<K,T>::key_type Key;
34 typedef typename QMap<K,T>::mapped_type Value;
39 std::uint32_t count = 0;
42 for (std::uint32_t i=0; i<count; i++)
51 else if (ar.isWrite())
53 std::uint32_t count =
static_cast<std::uint32_t
>(t.size());
55 Iterator it = t.begin();
56 for (std::uint32_t i=0; i<count; i++)
67 #endif // ! INCLUDE_SF_QMAP_HPP Definition: ByteBuffer.hpp:189