中间件底层,websocket

array.hpp 1008B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. //******************************************************************************
  2. // RCF - Remote Call Framework
  3. //
  4. // Copyright (c) 2005 - 2020, Delta V Software. All rights reserved.
  5. // http://www.deltavsoft.com
  6. //
  7. // RCF is distributed under dual licenses - closed source or GPL.
  8. // Consult your particular license for conditions of use.
  9. //
  10. // If you have not purchased a commercial license, you are using RCF
  11. // under GPL terms.
  12. //
  13. // Version: 3.2
  14. // Contact: support <at> deltavsoft.com
  15. //
  16. //******************************************************************************
  17. #ifndef INCLUDE_SF_ARRAY_TR1_HPP
  18. #define INCLUDE_SF_ARRAY_TR1_HPP
  19. #include <SF/SerializeArray.hpp>
  20. #include <RCF/Config.hpp>
  21. #include RCF_TR1_HEADER(array)
  22. namespace SF {
  23. class Archive;
  24. template<typename T, std::size_t N>
  25. void serialize_vc6(SF::Archive & ar, std::tr1::array<T, N> & a, const unsigned int)
  26. {
  27. serialize_array_impl(ar, a);
  28. }
  29. } // namespace SF
  30. #endif // ! INCLUDE_SF_ARRAY_TR1_HPP