Added program's help files to www pages and a ling to the english help file to the...
[urpo] / src / cerrdebugmonitor.cpp
1 #include "cerrdebugmonitor.h"
2 #include <iostream>
3
4 CerrDebugMonitor::CerrDebugMonitor(QObject *parent) :
5     QObject(parent)
6 {
7
8 }
9
10 void CerrDebugMonitor::debugMessage(QString message)
11 {
12     std::cout << message.toStdString();
13     std::cout << "\n";
14     std::cout.flush();
15 }