//****************************************************************************** // RCF - Remote Call Framework // Copyright (c) 2005 - 2007. All rights reserved. // Consult your license for conditions of use. // Developed by Jarl Lindrud. // Contact: jlindrud@hotmail.com . //****************************************************************************** #ifndef INCLUDE_SF_MAP_HPP #define INCLUDE_SF_MAP_HPP #include #include #include namespace SF { // std::map template inline void serialize(Archive &ar, std::map &t, const unsigned int version) { serializeStlContainer(ar, t, version); } // std::multimap template inline void serialize(Archive &ar, std::multimap &t, const unsigned int version) { serializeStlContainer(ar, t, version); } } #endif // ! INCLUDE_SF_MAP_HPP