Wildmeshing Toolkit
attribute_missing_error.hpp
Go to the documentation of this file.
1 #pragma once
2 #include "attribute_error.hpp"
4 struct AttributeDescription;
5 }
6 
8 
10 {
11 public:
12  static std::string make_message(const AttributeDescription& description);
15  {}
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)