//****************************************************************************** // 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_SET_HPP #define INCLUDE_SF_SET_HPP #include #include namespace SF { // std::set template inline void serialize(SF::Archive &ar, std::set &t, const unsigned int version) { serializeStlContainer(ar, t, version); } // std::multiset template inline void serialize(SF::Archive &ar, std::multiset &t, const unsigned int version) { serializeStlContainer(ar, t, version); } } // namespace SF #endif // ! INCLUDE_SF_SET_HPP