coal
3.0.1
Coal, The Collision Detection Library. Previously known as HPP-FCL, fork of FCL -- The Flexible Collision Library
memory.h
Go to the documentation of this file.
1
//
2
// Copyright (c) 2021 INRIA
3
//
4
5
#ifndef COAL_SERIALIZATION_MEMORY_H
6
#define COAL_SERIALIZATION_MEMORY_H
7
8
namespace
coal
{
9
10
namespace
internal {
11
template
<
typename
T>
12
struct
memory_footprint_evaluator
{
13
static
size_t
run
(
const
T &) {
return
sizeof
(T); }
14
};
15
}
// namespace internal
16
23
template
<
typename
T>
24
size_t
computeMemoryFootprint
(
const
T &
object
) {
25
return
internal::memory_footprint_evaluator<T>::run
(
object
);
26
}
27
28
}
// namespace coal
29
30
#endif
// ifndef COAL_SERIALIZATION_MEMORY_H
coal
Main namespace.
Definition:
broadphase_bruteforce.h:44
coal::computeMemoryFootprint
size_t computeMemoryFootprint(const T &object)
Returns the memory footpring of the input object. For POD objects, this function returns the result o...
Definition:
memory.h:24
coal::internal::memory_footprint_evaluator
Definition:
memory.h:12
coal::internal::memory_footprint_evaluator::run
static size_t run(const T &)
Definition:
memory.h:13
include
coal
serialization
memory.h
Generated by
1.9.1