15 lines
241 B
C++
15 lines
241 B
C++
#ifndef OPTIONS_HPP
|
|
#define OPTIONS_HPP
|
|
|
|
#include <cpptrace/utils.hpp>
|
|
|
|
namespace cpptrace {
|
|
namespace detail {
|
|
bool should_absorb_trace_exceptions();
|
|
bool should_resolve_inlined_calls();
|
|
cache_mode get_cache_mode();
|
|
}
|
|
}
|
|
|
|
#endif
|