2023-08-16 16:29:23 +00:00
|
|
|
#pragma once
|
|
|
|
///@file
|
|
|
|
|
|
|
|
// not used, but will be used by callers
|
|
|
|
#include <variant>
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Force the default versions of all constructors (copy, move, copy
|
|
|
|
* assignment).
|
|
|
|
*/
|
2024-08-23 05:44:29 +00:00
|
|
|
// NOLINTBEGIN(bugprone-macro-parentheses)
|
2023-08-16 16:29:23 +00:00
|
|
|
#define FORCE_DEFAULT_CONSTRUCTORS(CLASS_NAME) \
|
|
|
|
CLASS_NAME(const CLASS_NAME &) = default; \
|
|
|
|
CLASS_NAME(CLASS_NAME &) = default; \
|
|
|
|
CLASS_NAME(CLASS_NAME &&) = default; \
|
|
|
|
\
|
|
|
|
CLASS_NAME & operator =(const CLASS_NAME &) = default; \
|
|
|
|
CLASS_NAME & operator =(CLASS_NAME &) = default;
|
2024-08-23 05:44:29 +00:00
|
|
|
// NOLINTEND(bugprone-macro-parentheses)
|
2023-08-16 16:29:23 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Make a wrapper constructor. All args are forwarded to the
|
|
|
|
* construction of the "raw" field. (Which we assume is the only one.)
|
|
|
|
*
|
|
|
|
* The moral equivalent of `using Raw::Raw;`
|
|
|
|
*/
|
|
|
|
#define MAKE_WRAPPER_CONSTRUCTOR(CLASS_NAME) \
|
|
|
|
FORCE_DEFAULT_CONSTRUCTORS(CLASS_NAME) \
|
|
|
|
\
|
|
|
|
CLASS_NAME(auto &&... arg) \
|
|
|
|
: raw(std::forward<decltype(arg)>(arg)...) \
|
|
|
|
{ }
|