forked from donaloconnor/automon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherrorhandler.h
36 lines (29 loc) · 1.72 KB
/
errorhandler.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#ifndef ERRORHANDLER_H
#define ERRORHANDLER_H
/*
==================================================================================================
| errorhandler.h |
| Part of the Automon application. |
| |
| Final Year Project - "An Embedded Automotive Monitoring Device" |
| |
| By Donal O' Connor for completion of B.Sc (Hons) Software Development and Computer Networking |
| Email: [email protected] |
| Website/Blog: http://automon.killarneyonline.eu |
| |
| Cork Institute of Technology, Cork, Ireland - http://www.cit.ie/ |
| |
| Copyright © 2009 Donal O'Connor <[email protected]> |
==================================================================================================
This class is called anytime there is an error pressent.
*/
#include <QMessageBox>
class ErrorHandler : public QMessageBox
{
Q_OBJECT
public:
ErrorHandler(QWidget * parent = 0);
public slots:
void errorSlot(QString);
};
#endif // ERRORHANDLER_H