metaforce/Runtime/CCallStack.hpp

21 lines
470 B
C++
Raw Normal View History

2016-04-13 06:07:23 +00:00
#ifndef __URDE_CCALLSTACK_HPP__
#define __URDE_CCALLSTACK_HPP__
2015-08-23 18:53:43 +00:00
2016-03-04 23:04:53 +00:00
namespace urde
2015-08-23 18:53:43 +00:00
{
class CCallStack
{
const char* x0_fileAndLineStr;
const char* x4_typeStr;
public:
2016-04-11 03:59:54 +00:00
CCallStack(const char* fileAndLineStr, const char* typeStr)
2015-08-23 18:53:43 +00:00
: x0_fileAndLineStr(fileAndLineStr), x4_typeStr(typeStr) {}
const char* GetFileAndLineText() const {return x0_fileAndLineStr;}
const char* GetTypeText() const {return x4_typeStr;}
};
}
2016-04-13 06:07:23 +00:00
#endif // __URDE_CCALLSTACK_HPP__