prime/include/Kyoto/Alloc/CCallStack.hpp
Phillip Stephens 57bb02906e More allocator work
Former-commit-id: 57ce723ec2d787b29c5ba3b4924842db591b4bfe
2022-09-19 21:35:24 -07:00

16 lines
315 B
C++

#ifndef __CCALLSTACK_HPP__
#define __CCALLSTACK_HPP__
class CCallStack {
public:
CCallStack(uint lineNum, const char* lineStr, const char* type);
const char* GetFileAndLineText() const;
const char* GetTypeText() const;
private:
const char* x0_line;
const char* x4_type;
};
#endif // __CCALLSTACK_HPP__