1 Star 0 Fork 1

zzttth/QBreakpad

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
QBreakpad.h 822 Bytes
一键复制 编辑 原始数据 按行查看 历史
zzttth 提交于 2021-12-21 19:28 . 公开仓库
#ifndef QBREAKPAD_H
#define QBREAKPAD_H
#include <QObject>
class QBreakpadPrivate;
#ifdef QBREAKPAD_LINRARY
#define DYNAMIC_LIBRARY Q_DECL_EXPORT
#else
#define DYNAMIC_LIBRARY
#endif
class DYNAMIC_LIBRARY QBreakpad : public QObject
{
public:
virtual ~QBreakpad();
static QBreakpad *instance();
/**
* @brief Init
* @param dumpPath e.g. "." "./dump"
* @param strApp restart application file path
*/
void Init(const QString& dumpPath, const QString &strApp = QString());
bool WriteMinidump();
void SetReporter(const QString &strReporter);
void SetApplication(const QString &strApp);
void AppendInfoFile(const QString &strFile);
protected:
QBreakpad();
private:
friend class QBreakpadPrivate;
QBreakpadPrivate * const d_ptr;
};
#endif // QBREAKPAD_H
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/xairy/QBreakpad.git
[email protected]:xairy/QBreakpad.git
xairy
QBreakpad
QBreakpad
master

搜索帮助