mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 11:38:21 +02:00
Made crash catcher calls virtual to support intra-module calling
This commit is contained in:
parent
09729872e9
commit
08adbd565b
1 changed files with 6 additions and 6 deletions
|
@ -23,13 +23,13 @@ public:
|
|||
public:
|
||||
CrashCatcher();
|
||||
|
||||
void Init();
|
||||
void AddCrashInfoFunc(CrashInfoFunc crashInfoFunc);
|
||||
void AddInfo(const StringImpl& str);
|
||||
virtual void Init();
|
||||
virtual void AddCrashInfoFunc(CrashInfoFunc crashInfoFunc);
|
||||
virtual void AddInfo(const StringImpl& str);
|
||||
|
||||
void Test();
|
||||
void Crash(const StringImpl& str);
|
||||
void SetCrashReportKind(BfpCrashReportKind crashReportKind);
|
||||
virtual void Test();
|
||||
virtual void Crash(const StringImpl& str);
|
||||
virtual void SetCrashReportKind(BfpCrashReportKind crashReportKind);
|
||||
|
||||
static CrashCatcher* Get();
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue