#pragma once #include struct StackTracer { StackTracer(); StackTracer(uintptr_t base_pointer); void trace(); private: uintptr_t m_base_pointer; };