95 lines
2.9 KiB
C++
95 lines
2.9 KiB
C++
/****************************************************************************
|
|
**
|
|
** https://www.qxorm.com/
|
|
** Copyright (C) 2013 XDL Team (ic-east.com)
|
|
**
|
|
** This file is part of the QxOrm library
|
|
**
|
|
** This software is provided 'as-is', without any express or implied
|
|
** warranty. In no event will the authors be held liable for any
|
|
** damages arising from the use of this software
|
|
**
|
|
** Commercial Usage
|
|
** Licensees holding valid commercial QxOrm licenses may use this file in
|
|
** accordance with the commercial license agreement provided with the
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
** a written agreement between you and XDL Team
|
|
**
|
|
** GNU General Public License Usage
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
** General Public License version 3.0 as published by the Free Software
|
|
** Foundation and appearing in the file 'license.gpl3.txt' included in the
|
|
** packaging of this file. Please review the following information to
|
|
** ensure the GNU General Public License version 3.0 requirements will be
|
|
** met : http://www.gnu.org/copyleft/gpl.html
|
|
**
|
|
** If you are unsure which license is appropriate for your use, or
|
|
** if you have questions regarding the use of this file, please contact :
|
|
** ic-east.com
|
|
**
|
|
****************************************************************************/
|
|
|
|
#ifdef _QX_ENABLE_BOOST_SERIALIZATION
|
|
#ifndef _QX_BOOST_SERIALIZE_HELPER_H_
|
|
#define _QX_BOOST_SERIALIZE_HELPER_H_
|
|
|
|
#ifdef _MSC_VER
|
|
#pragma once
|
|
#endif
|
|
|
|
#include <boost/serialization/void_cast.hpp>
|
|
|
|
#include <QxTraits/get_base_class.h>
|
|
|
|
#include <QxSerialize/QxBoostSerializeHelper/QxBoostInitGuid.h>
|
|
|
|
namespace qx
|
|
{
|
|
|
|
template <class T>
|
|
class QxBoostSerializeHelper
|
|
{
|
|
|
|
private:
|
|
typedef T type_derived;
|
|
typedef typename qx::trait::get_base_class<type_derived>::type type_base;
|
|
|
|
public:
|
|
template <class Archive>
|
|
static inline void register_type_helper(Archive &ar, const T *t)
|
|
{
|
|
Q_UNUSED(t);
|
|
ar.template register_type<type_derived>();
|
|
}
|
|
|
|
static inline void void_cast_register_helper(const T *t)
|
|
{
|
|
Q_UNUSED(t);
|
|
QxBoostVoidCastRegisterHelper<std::is_same<type_base, qx::trait::no_base_class_defined>::value, 0>::helper();
|
|
}
|
|
|
|
static inline void init_guid(const T *t)
|
|
{
|
|
Q_UNUSED(t);
|
|
QxBoostInitGuid<T>::init();
|
|
}
|
|
|
|
private:
|
|
template <bool bNoBaseClass /* = false */, int dummy>
|
|
struct QxBoostVoidCastRegisterHelper
|
|
{
|
|
static inline void helper() { boost::serialization::void_cast_register(static_cast<type_derived *>(NULL), static_cast<type_base *>(NULL)); }
|
|
};
|
|
|
|
template <int dummy>
|
|
struct QxBoostVoidCastRegisterHelper<true, dummy>
|
|
{
|
|
static inline void helper() { /* Nothing */ ; }
|
|
};
|
|
};
|
|
|
|
} // namespace qx
|
|
|
|
#endif // _QX_BOOST_SERIALIZE_HELPER_H_
|
|
#endif // _QX_ENABLE_BOOST_SERIALIZATION
|