blob: d110a49a6fc92eb53c8de5ddac886f02df6fb8ec (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
// Copyright (c) 2016-2023 Antony Polukhin
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
#ifndef PFR_HPP
#define PFR_HPP
/// \file pfr.hpp
/// Includes all the Boost.PFR headers
#include <pfr/config.hpp>
#include <pfr/core.hpp>
#include <pfr/core_name.hpp>
#include <pfr/functions_for.hpp>
#include <pfr/functors.hpp>
#include <pfr/io.hpp>
#include <pfr/io_fields.hpp>
#include <pfr/ops.hpp>
#include <pfr/ops_fields.hpp>
#include <pfr/tuple_size.hpp>
#include <pfr/traits_fwd.hpp>
#include <pfr/traits.hpp>
#endif // PFR_HPP
|