1 /* This file is (c) 2008-2012 Konstantin Isakov <ikm@goldendict.org>
2  * Part of GoldenDict. Licensed under GPLv3 or later, see the LICENSE file */
3 
4 #ifndef TERMINATION_HH
5 #define TERMINATION_HH
6 
7 #include <QFile>
8 
9 extern QFile * logFilePtr;
10 
11 // Installs the termination handler which attempts to pop Qt's dialog showing
12 // the exception and backtrace, and then aborts.
13 void installTerminationHandler();
14 
15 #endif // TERMINATION_HH
16