//****************************************************************************** // 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_RCF_PROTOCOL_BOOSTSERIALIZATION_HPP #define INCLUDE_RCF_PROTOCOL_BOOSTSERIALIZATION_HPP #include #include #include #include #include #include #include #include #include namespace RCF { template<> class Protocol< boost::mpl::int_ > : public ProtocolImpl2 { public: static std::string getName() { return "boost serialization binary protocol"; } }; template<> class Protocol< boost::mpl::int_ > : public ProtocolImpl2 { public: static std::string getName() { return "boost serialization text protocol"; } }; } // namespace RCF #endif //! INCLUDE_RCF_PROTOCOL_BOOSTSERIALIZATION_HPP