diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 18:24:20 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 18:24:20 +0000 |
commit | 483eb2f56657e8e7f419ab1a4fab8dce9ade8609 (patch) | |
tree | e5d88d25d870d5dedacb6bbdbe2a966086a0a5cf /src/boost/libs/serialization/test/derived2.hpp | |
parent | Initial commit. (diff) | |
download | ceph-483eb2f56657e8e7f419ab1a4fab8dce9ade8609.tar.xz ceph-483eb2f56657e8e7f419ab1a4fab8dce9ade8609.zip |
Adding upstream version 14.2.21.upstream/14.2.21upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/boost/libs/serialization/test/derived2.hpp')
-rw-r--r-- | src/boost/libs/serialization/test/derived2.hpp | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/src/boost/libs/serialization/test/derived2.hpp b/src/boost/libs/serialization/test/derived2.hpp new file mode 100644 index 00000000..4be59166 --- /dev/null +++ b/src/boost/libs/serialization/test/derived2.hpp @@ -0,0 +1,50 @@ +#ifndef BOOST_SERIALIZATION_TEST_DERIVED2_HPP +#define BOOST_SERIALIZATION_TEST_DERIVED2_HPP + +// MS compatible compilers support #pragma once +#if defined(_MSC_VER) +# pragma once +#endif + +/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8 +// derived2.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 <boost/config.hpp> + +#include <boost/serialization/export.hpp> +#include <boost/serialization/access.hpp> + +#define BASE_IMPORT +#include "base.hpp" + +#if defined(DERIVED2_IMPORT) + #define DLL_DECL BOOST_SYMBOL_IMPORT +#elif defined(DERIVED2_EXPORT) + #define DLL_DECL BOOST_SYMBOL_EXPORT +#else + #define DLL_DECL +#endif + +class DLL_DECL derived2 : + public base +{ + friend class boost::serialization::access; + template<class Archive> + void serialize(Archive &ar, const unsigned int /* file_version */); +public: + ~derived2(){} +}; + +#undef DLL_DECL + +// MWerks users can do this to make their code work +BOOST_SERIALIZATION_MWERKS_BASE_AND_DERIVED(base, derived2) + +#endif // BOOST_SERIALIZATION_TEST_DERIVED2_HPP |