mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-06 23:02:42 +02:00
30 lines
516 B
C++
30 lines
516 B
C++
/**********************************************************************
|
|
|
|
Audacity: A Digital Audio Editor
|
|
|
|
CrashReport.h
|
|
|
|
Paul Licameli
|
|
split from AudacityApp.h
|
|
|
|
**********************************************************************/
|
|
|
|
#ifndef __AUDACITY_CRASH_REPORT__
|
|
#define __AUDACITY_CRASH_REPORT__
|
|
|
|
#include "Audacity.h"
|
|
#include "Experimental.h"
|
|
|
|
#if defined(EXPERIMENTAL_CRASH_REPORT)
|
|
|
|
#include <wx/debugrpt.h>
|
|
|
|
namespace CrashReport
|
|
{
|
|
void Generate(wxDebugReport::Context ctx);
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|