Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-12-16 10:09:42

0001 // Copyright Antony Polukhin, 2016-2025.
0002 //
0003 // Distributed under the Boost Software License, Version 1.0. (See
0004 // accompanying file LICENSE_1_0.txt or copy at
0005 // http://www.boost.org/LICENSE_1_0.txt)
0006 
0007 #ifndef BOOST_STACKTRACE_STACKTRACE_FWD_HPP
0008 #define BOOST_STACKTRACE_STACKTRACE_FWD_HPP
0009 
0010 #include <cstddef>
0011 #include <memory>
0012 
0013 /// @file stacktrace_fwd.hpp This header contains only forward declarations of
0014 /// boost::stacktrace::frame, boost::stacktrace::basic_stacktrace, boost::stacktrace::stacktrace
0015 /// and does not include any other Boost headers.
0016 
0017 /// @cond
0018 namespace boost { namespace stacktrace {
0019 
0020 class frame;
0021 template <class Allocator = std::allocator<frame> > class basic_stacktrace;
0022 typedef basic_stacktrace<> stacktrace;
0023 
0024 }} // namespace boost::stacktrace
0025 /// @endcond
0026 
0027 
0028 #endif // BOOST_STACKTRACE_STACKTRACE_FWD_HPP