1 // Copyright Antony Polukhin, 2016-2019.
2 //
3 // Distributed under the Boost Software License, Version 1.0. (See
4 // accompanying file LICENSE_1_0.txt or copy at
5 // http://www.boost.org/LICENSE_1_0.txt)
6 
7 #ifndef BOOST_STACKTRACE_HPP
8 #define BOOST_STACKTRACE_HPP
9 
10 #include <boost/config.hpp>
11 #ifdef BOOST_HAS_PRAGMA_ONCE
12 #   pragma once
13 #endif
14 
15 #include <boost/stacktrace/frame.hpp>
16 #include <boost/stacktrace/stacktrace.hpp>
17 #include <boost/stacktrace/safe_dump_to.hpp>
18 
19 #endif // BOOST_STACKTRACE_HPP
20