Password authentication (stage 1 - without xosso-terminal)
[urpo] / src / cerrdebugmonitor.h
1 #ifndef CERRDEBUGMONITOR_H
2 #define CERRDEBUGMONITOR_H
3
4 #include <QObject>
5
6 /*!  Debug monitor to stardart output (cout)
7
8   Temperary, not used in final program
9
10   @see DebugConsole
11
12   @author Arto Hyvättinen
13   @version 0
14   @date 2010-06-12
15
16   */
17 class CerrDebugMonitor : public QObject
18 {
19     Q_OBJECT
20 public:
21     explicit CerrDebugMonitor(QObject *parent = 0);
22
23 signals:
24
25 public slots:
26     void debugMessage(QString message);
27
28 };
29
30 #endif // CERRDEBUGMONITOR_H