Wildmeshing Toolkit
Loading...
Searching...
No Matches
CachingAttribute.cpp
Go to the documentation of this file.
1#if defined(WMTK_ENABLED_DEV_MODE)
3#include <wmtk/Mesh.hpp>
4
5namespace wmtk::attribute {
6
7#define CLASS_DEC(TYPE) template class CachingAttribute<TYPE>;
8#define VECTOR_DEC(TYPE, D) \
9 template auto CachingAttribute<TYPE>::const_vector_single_value<D>( \
10 int64_t index, \
11 int8_t single_index) const -> const TYPE&; \
12 template auto CachingAttribute<TYPE>::const_vector_attribute<D>(int64_t index) const \
13 -> ConstMapResult<D>; \
14 template auto CachingAttribute<TYPE>::vector_attribute<D>(int64_t index) -> MapResult<D>;
15
16
17#define DEC(TYPE) \
18 CLASS_DEC(TYPE) \
19 VECTOR_DEC(TYPE, -1) \
20 VECTOR_DEC(TYPE, 1) \
21 VECTOR_DEC(TYPE, 2) \
22 VECTOR_DEC(TYPE, 3) \
23 VECTOR_DEC(TYPE, 4) \
24 VECTOR_DEC(TYPE, 5) \
25 VECTOR_DEC(TYPE, 6)
26
27
28DEC(double)
29DEC(int64_t)
30DEC(Rational)
31DEC(char)
32} // namespace wmtk::attribute
33#endif