Blame view

3rdparty/boost_1_81_0/libs/serialization/test/A.hpp 2.24 KB
73ef4ff3   Hu Chunming   提交三方库
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
  #ifndef BOOST_SERIALIZATION_TEST_A_HPP
  #define BOOST_SERIALIZATION_TEST_A_HPP
  
  // MS compatible compilers support #pragma once
  #if defined(_MSC_VER)
  # pragma once
  #endif
  
  /////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
  // A.hpp    simple class test
  
  // (C) Copyright 2002 Robert Ramey - http://www.rrsd.com .
  // Use, modification and distribution is subject to the Boost Software
  // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  // http://www.boost.org/LICENSE_1_0.txt)
  
  //  See http://www.boost.org for updates, documentation, and revision history.
  
  #include <ostream> // for friend output operators
  #include <cstddef> // size_t
  #include <boost/config.hpp>
  
  #if defined(BOOST_NO_STDC_NAMESPACE)
  namespace std{
      using ::size_t;
  }
  #endif
  
  #include <boost/limits.hpp>
  #include <boost/cstdint.hpp>
  
  #include <boost/serialization/access.hpp>
  #include <boost/serialization/string.hpp>
  
  #if defined(A_IMPORT)
      #define A_DLL_DECL BOOST_SYMBOL_IMPORT
      #pragma message("A imported")
  #elif defined(A_EXPORT)
      #define A_DLL_DECL BOOST_SYMBOL_EXPORT
      #pragma message ("A exported")
  #endif
  
  #ifndef A_DLL_DECL
      #define A_DLL_DECL
  #endif
  
  class A_DLL_DECL A {
  private:
      friend class boost::serialization::access;
      template<class Archive>
      void serialize(
          Archive &ar,
          const unsigned int /* file_version */
      );
      bool b;
      #ifndef BOOST_NO_INT64_T
      boost::int64_t f;
      boost::uint64_t g;
      #endif
      enum h {
          i = 0,
          j,
          k
      } l;
      std::size_t m;
      signed long n;
      unsigned long o;
      signed  short p;
      unsigned short q;
      #ifndef BOOST_NO_CWCHAR
      wchar_t r;
      #endif
      char c;
      signed char s;
      unsigned char t;
      signed int u;
      unsigned int v;
      float w;
      double x;
      std::string y;
      #ifndef BOOST_NO_STD_WSTRING
      std::wstring z;
      #endif
  public:
      A();
      bool check_equal(const A &rhs) const;
      bool operator==(const A &rhs) const;
      bool operator!=(const A &rhs) const;
      bool operator<(const A &rhs) const; // used by less
      // hash function for class A
      operator std::size_t () const;
      friend std::ostream & operator<<(std::ostream & os, A const & a);
  };
  
  #endif // BOOST_SERIALIZATION_TEST_A_HPP