Initial: added urpo files!
[urpo] / src / cerrdebugmonitor.h
diff --git a/src/cerrdebugmonitor.h b/src/cerrdebugmonitor.h
new file mode 100644 (file)
index 0000000..1415c0a
--- /dev/null
@@ -0,0 +1,30 @@
+#ifndef CERRDEBUGMONITOR_H
+#define CERRDEBUGMONITOR_H
+
+#include <QObject>
+
+/*!  Debug monitor to stardart output (cout)
+
+  Temperary, not used in final program
+
+  @see DebugConsole
+
+  @author Arto Hyvättinen
+  @version 0
+  @date 2010-06-12
+
+  */
+class CerrDebugMonitor : public QObject
+{
+    Q_OBJECT
+public:
+    explicit CerrDebugMonitor(QObject *parent = 0);
+
+signals:
+
+public slots:
+    void debugMessage(QString message);
+
+};
+
+#endif // CERRDEBUGMONITOR_H