#pragma once #include #include namespace fxn::detail { struct Stackframe { void* address; std::string formatted; }; class Stacktrace { private: std::vector m_Frames; public: Stacktrace(); public: const std::vector& GetFrames() const noexcept; std::string ToString() const; }; }