OpenCPN Partial API docs
Loading...
Searching...
No Matches
crashprint.h
Go to the documentation of this file.
1
2// File: crashprint.h
3// Purpose: wxCrashPrint class
4// Maintainer: Wyo
5// Created: 2004-09-28
6// Copyright: (c) 2004 wxCode
7// Licence: wxWindows
9
16#ifndef _WX_CRASHPRINT_H_
17#define _WX_CRASHPRINT_H_
18
19static const int maxBtCount = 100;
20
25public:
27 wxCrashPrint(int flags = 0, const wxString &fname = wxEmptyString);
28
31
32 // format and print report
33 void Report();
34
35private:
37 int m_flags;
38 wxString m_fname;
39
40 void *m_btBuffer[maxBtCount];
41 char **m_btStrings;
42};
43
44#endif // _WX_CRASHPRINT_H_
Handles crash reporting in wxWidgets applications.
Definition crashprint.h:24
~wxCrashPrint()
destructor
Definition crashprint.h:30