OpenCPN Partial API docs
Loading...
Searching...
No Matches
crashprint.h
1
2// File: crashprint.h
3// Purpose: wxCrashPrint class
4// Maintainer: Wyo
5// Created: 2004-09-28
6// RCS-ID: $Id: crashprint.h,v 1.5 2004-11-22 18:27:11 wyo Exp $
7// Copyright: (c) 2004 wxCode
8// Licence: wxWindows
10
11#ifndef _WX_CRASHPRINT_H_
12#define _WX_CRASHPRINT_H_
13
14// #ifdef __GNUG__
15// #pragma implementation "crashprint.h"
16// #endif
17
18//----------------------------------------------------------------------------
19// information
20//----------------------------------------------------------------------------
21
22//----------------------------------------------------------------------------
23// headers
24//----------------------------------------------------------------------------
26
27//============================================================================
28// declarations
29//============================================================================
30const int maxBtCount = 100;
31
36public:
38 wxCrashPrint(int flags = 0, const wxString &fname = wxEmptyString);
39
42
43 // format and print report
44 void Report();
45
46private:
48 int m_flags;
49 wxString m_fname;
50
51 void *m_btBuffer[maxBtCount];
52 char **m_btStrings;
53};
54
55#endif // _WX_CRASHPRINT_H_
Handles crash reporting in wxWidgets applications.
Definition crashprint.h:35
~wxCrashPrint()
destructor
Definition crashprint.h:41