2024-05-31 22:59:00 -04:00
|
|
|
#ifndef RFL_DEFINELITERAL_HPP_
|
|
|
|
#define RFL_DEFINELITERAL_HPP_
|
|
|
|
|
|
|
|
#include "Literal.hpp"
|
|
|
|
#include "internal/define_literal.hpp"
|
|
|
|
|
|
|
|
namespace rfl {
|
|
|
|
|
2024-06-08 14:10:59 -04:00
|
|
|
/// Allows you to combine several literal types.
|
|
|
|
template <class... LiteralTypes>
|
2024-06-16 00:13:15 -04:00
|
|
|
using define_literal_t = typename internal::define_literal<LiteralTypes...>::type;
|
2024-05-31 22:59:00 -04:00
|
|
|
|
2024-06-08 14:10:59 -04:00
|
|
|
} // namespace rfl
|
2024-05-31 22:59:00 -04:00
|
|
|
|
2024-06-08 14:10:59 -04:00
|
|
|
#endif // RFL_DEFINELITERAL_HPP_
|