├── .gitignore ├── .gitmodules ├── .travis.yml ├── AUTHORS ├── CHANGELOG ├── LICENSE.LGPL ├── README.md ├── TODO ├── config.pri ├── demo ├── demo.pro ├── program │ ├── TestThread.cpp │ ├── TestThread.h │ ├── main.cpp │ └── program.pro └── reporter │ ├── reporter.cpp │ ├── reporter.h │ ├── reporter.pro │ └── reporter.ui ├── handler ├── QBreakpadHandler.cpp ├── QBreakpadHandler.h ├── QBreakpadHttpUploader.cpp ├── QBreakpadHttpUploader.h ├── handler.pro └── singletone │ ├── call_once.h │ └── singleton.h ├── qBreakpad.pri ├── qBreakpad.pro ├── tests ├── duplicates │ ├── duplicates.pro │ └── main.cpp ├── tests.pro └── testsRunner │ ├── testsRunner.pro │ └── tst_duplicates.cpp └── third_party ├── .gitignore ├── README └── breakpad.pri /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buzzySmile/qBreakpad/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buzzySmile/qBreakpad/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buzzySmile/qBreakpad/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buzzySmile/qBreakpad/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buzzySmile/qBreakpad/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE.LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buzzySmile/qBreakpad/HEAD/LICENSE.LGPL -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buzzySmile/qBreakpad/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buzzySmile/qBreakpad/HEAD/TODO -------------------------------------------------------------------------------- /config.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buzzySmile/qBreakpad/HEAD/config.pri -------------------------------------------------------------------------------- /demo/demo.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | SUBDIRS = program reporter 3 | -------------------------------------------------------------------------------- /demo/program/TestThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buzzySmile/qBreakpad/HEAD/demo/program/TestThread.cpp -------------------------------------------------------------------------------- /demo/program/TestThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buzzySmile/qBreakpad/HEAD/demo/program/TestThread.h -------------------------------------------------------------------------------- /demo/program/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buzzySmile/qBreakpad/HEAD/demo/program/main.cpp -------------------------------------------------------------------------------- /demo/program/program.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buzzySmile/qBreakpad/HEAD/demo/program/program.pro -------------------------------------------------------------------------------- /demo/reporter/reporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buzzySmile/qBreakpad/HEAD/demo/reporter/reporter.cpp -------------------------------------------------------------------------------- /demo/reporter/reporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buzzySmile/qBreakpad/HEAD/demo/reporter/reporter.h -------------------------------------------------------------------------------- /demo/reporter/reporter.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buzzySmile/qBreakpad/HEAD/demo/reporter/reporter.pro -------------------------------------------------------------------------------- /demo/reporter/reporter.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buzzySmile/qBreakpad/HEAD/demo/reporter/reporter.ui -------------------------------------------------------------------------------- /handler/QBreakpadHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buzzySmile/qBreakpad/HEAD/handler/QBreakpadHandler.cpp -------------------------------------------------------------------------------- /handler/QBreakpadHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buzzySmile/qBreakpad/HEAD/handler/QBreakpadHandler.h -------------------------------------------------------------------------------- /handler/QBreakpadHttpUploader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buzzySmile/qBreakpad/HEAD/handler/QBreakpadHttpUploader.cpp -------------------------------------------------------------------------------- /handler/QBreakpadHttpUploader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buzzySmile/qBreakpad/HEAD/handler/QBreakpadHttpUploader.h -------------------------------------------------------------------------------- /handler/handler.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buzzySmile/qBreakpad/HEAD/handler/handler.pro -------------------------------------------------------------------------------- /handler/singletone/call_once.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buzzySmile/qBreakpad/HEAD/handler/singletone/call_once.h -------------------------------------------------------------------------------- /handler/singletone/singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buzzySmile/qBreakpad/HEAD/handler/singletone/singleton.h -------------------------------------------------------------------------------- /qBreakpad.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buzzySmile/qBreakpad/HEAD/qBreakpad.pri -------------------------------------------------------------------------------- /qBreakpad.pro: -------------------------------------------------------------------------------- 1 | CONFIG += ordered 2 | TEMPLATE = subdirs 3 | SUBDIRS += handler demo tests 4 | -------------------------------------------------------------------------------- /tests/duplicates/duplicates.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buzzySmile/qBreakpad/HEAD/tests/duplicates/duplicates.pro -------------------------------------------------------------------------------- /tests/duplicates/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buzzySmile/qBreakpad/HEAD/tests/duplicates/main.cpp -------------------------------------------------------------------------------- /tests/tests.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buzzySmile/qBreakpad/HEAD/tests/tests.pro -------------------------------------------------------------------------------- /tests/testsRunner/testsRunner.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buzzySmile/qBreakpad/HEAD/tests/testsRunner/testsRunner.pro -------------------------------------------------------------------------------- /tests/testsRunner/tst_duplicates.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buzzySmile/qBreakpad/HEAD/tests/testsRunner/tst_duplicates.cpp -------------------------------------------------------------------------------- /third_party/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buzzySmile/qBreakpad/HEAD/third_party/.gitignore -------------------------------------------------------------------------------- /third_party/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buzzySmile/qBreakpad/HEAD/third_party/README -------------------------------------------------------------------------------- /third_party/breakpad.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buzzySmile/qBreakpad/HEAD/third_party/breakpad.pri --------------------------------------------------------------------------------