Wildmeshing Toolkit
Loading...
Searching...
No Matches
attribute_missing_error.hpp
Go to the documentation of this file.
1#pragma once
2#include "attribute_error.hpp"
4struct AttributeDescription;
5}
6
8
10{
11public:
12 static std::string make_message(const AttributeDescription& description);
16 template <typename... Args>
17 static attribute_missing_error make(Args&&... args)
18 {
19 return attribute_missing_error(AttributeDescription{std::forward<Args>(args)...});
20 }
21};
22
23
24} // namespace wmtk::components::multimesh::utils::detail
static std::string make_message(const AttributeDescription &description)