Go to the documentation of this file.
18 #ifndef FIELD_INSTANCES_HH_
19 #define FIELD_INSTANCES_HH_
27 #define INSTANCE_DIM_DEP_VALUES( field, dim_from, dim_to) \
28 template class field<dim_from, FieldValue<dim_to>::VectorFixed >; \
29 template class field<dim_from, FieldValue<dim_to>::TensorFixed >; \
32 #define INSTANCE_TO_ALL(field, dim_from) \
33 template class field<dim_from, FieldValue<0>::Enum >; \
34 template class field<dim_from, FieldValue<0>::Integer >; \
35 template class field<dim_from, FieldValue<0>::Scalar >; \
37 INSTANCE_DIM_DEP_VALUES( field, dim_from, dim_from) \
43 #define INSTANCE_ALL(field) \
44 INSTANCE_TO_ALL( field, 3)