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:
|
public:
|
||||||
CrashCatcher();
|
CrashCatcher();
|
||||||
|
|
||||||
void Init();
|
virtual void Init();
|
||||||
void AddCrashInfoFunc(CrashInfoFunc crashInfoFunc);
|
virtual void AddCrashInfoFunc(CrashInfoFunc crashInfoFunc);
|
||||||
void AddInfo(const StringImpl& str);
|
virtual void AddInfo(const StringImpl& str);
|
||||||
|
|
||||||
void Test();
|
virtual void Test();
|
||||||
void Crash(const StringImpl& str);
|
virtual void Crash(const StringImpl& str);
|
||||||
void SetCrashReportKind(BfpCrashReportKind crashReportKind);
|
virtual void SetCrashReportKind(BfpCrashReportKind crashReportKind);
|
||||||
|
|
||||||
static CrashCatcher* Get();
|
static CrashCatcher* Get();
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue