Wildmeshing Toolkit
Loading...
Searching...
No Matches
AttributeScope.hxx
Go to the documentation of this file.
2#include "AttributeScope.hpp"
3namespace wmtk::attribute {
4
5template <typename T>
8template <typename T>
11template <typename T>
12inline AttributeScope<T>::AttributeScope(std::unique_ptr<AttributeScope>&& next)
13{}
14
15
16template <typename T>
17inline void AttributeScope<T>::apply(Attribute<T>& attr) const
18{
20}
21template <typename T>
22inline void AttributeScope<T>::apply(const Attribute<T>& attr, std::vector<T>& data)
23{
25}
26
27
28// template class AttributeScope<int64_t>;
29// template class AttributeScope<double>;
30// template class AttributeScope<char>;
31// template class AttributeScope<Rational>;
32} // namespace wmtk::attribute
This class stores data of type T in a vector.
Definition Attribute.hpp:32
void apply(Attribute< T > &attr) const
void apply_to(Attribute< T > &attribute) const