prime/include/Kyoto/Alloc/CCallStack.hpp

17 lines
295 B
C++
Raw Normal View History

#ifndef _CCALLSTACK
#define _CCALLSTACK
2022-09-20 04:35:24 +00:00
class CCallStack {
public:
CCallStack(uint lineNum, const char* lineStr, const char* type);
const char* GetFileAndLineText() const;
const char* GetTypeText() const;
2022-09-20 04:35:24 +00:00
private:
const char* x0_line;
const char* x4_type;
};
#endif // _CCALLSTACK