coal  3.0.1
Coal, The Collision Detection Library. Previously known as HPP-FCL, fork of FCL -- The Flexible Collision Library
fwd.h File Reference
#include <type_traits>
#include <boost/archive/text_iarchive.hpp>
#include <boost/archive/text_oarchive.hpp>
#include <boost/archive/xml_iarchive.hpp>
#include <boost/archive/xml_oarchive.hpp>
#include <boost/archive/binary_iarchive.hpp>
#include <boost/archive/binary_oarchive.hpp>
#include <boost/serialization/split_free.hpp>
#include <boost/serialization/shared_ptr.hpp>
#include <boost/serialization/export.hpp>
#include "coal/fwd.hh"
#include "coal/serialization/eigen.h"
Include dependency graph for fwd.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

struct  coal::serialization::detail::init_cast_register< Derived, Base >
 
struct  coal::serialization::detail::cast_register_initializer< Derived, Base >
 
struct  coal::serialization::register_type< T >
 

Namespaces

 coal
 Main namespace.
 
 coal::serialization
 
 coal::serialization::detail
 

Macros

#define COAL_SERIALIZATION_SPLIT(Type)
 
#define COAL_SERIALIZATION_DECLARE_EXPORT(T)
 
#define COAL_SERIALIZATION_DEFINE_EXPORT(T)
 
#define COAL_SERIALIZATION_CAST_REGISTER(Derived, Base)
 

Macro Definition Documentation

◆ COAL_SERIALIZATION_CAST_REGISTER

#define COAL_SERIALIZATION_CAST_REGISTER (   Derived,
  Base 
)
Value:
namespace coal { \
namespace serialization { \
namespace detail { \
template <> \
struct init_cast_register<Derived, Base> { \
static cast_register_initializer<Derived, Base> const& g; \
}; \
cast_register_initializer<Derived, Base> const& init_cast_register< \
Derived, Base>::g = \
::boost::serialization::singleton< \
cast_register_initializer<Derived, Base> >::get_mutable_instance() \
.init(); \
} \
} \
}
Main namespace.
Definition: broadphase_bruteforce.h:44

◆ COAL_SERIALIZATION_DECLARE_EXPORT

#define COAL_SERIALIZATION_DECLARE_EXPORT (   T)
Value:
namespace boost { \
namespace archive { \
namespace detail { \
namespace extra_detail { \
template <> \
struct init_guid<T> { \
static guid_initializer<T> const& g; \
}; \
} \
} \
} \
} \
Definition: AABB.h:11
BOOST_CLASS_EXPORT_KEY(::coal::BVHModel<::coal::AABB >) namespace boost
Definition: BVH_model.h:241

◆ COAL_SERIALIZATION_DEFINE_EXPORT

#define COAL_SERIALIZATION_DEFINE_EXPORT (   T)
Value:
namespace boost { \
namespace archive { \
namespace detail { \
namespace extra_detail { \
guid_initializer<T> const& init_guid<T>::g = \
::boost::serialization::singleton< \
guid_initializer<T> >::get_mutable_instance() \
.export_guid(); \
} \
} \
} \
} \

◆ COAL_SERIALIZATION_SPLIT

#define COAL_SERIALIZATION_SPLIT (   Type)
Value:
template <class Archive> \
void serialize(Archive& ar, Type& value, const unsigned int version) { \
split_free(ar, value, version); \
}
void serialize(Archive &ar, coal::AABB &aabb, const unsigned int)
Definition: AABB.h:15