36 using Ts::operator()...;
44template<
class Exception>
45struct MonoThrowHandler {
46 explicit MonoThrowHandler(
const std::string& message)
50 void operator()(std::monostate&)
52 throw Exception(message_);
55 void operator()(
const std::monostate&)
const
57 throw Exception(message_);
This class implements a small container which holds the transmissibility mulitpliers for all the face...
Definition Exceptions.hpp:30
VisitorOverloadSet(Ts...) -> VisitorOverloadSet< Ts... >
Deduction guide for visitor overload sets.
Helper struct for for generating visitor overload sets.
Definition Visitor.hpp:35