SparrowBot/ircbot/console.h
2015-08-17 13:43:48 +02:00

18 lines
300 B
C++

#ifndef CONSOLE_H
#define CONSOLE_H
#include <QTextBrowser>
class Console : public QTextBrowser
{
Q_OBJECT
public:
Console(QWidget*& w) : QTextBrowser(w) {}
public slots:
void appendAdvancedMsg(const QString& msg);
void appendSimpleMsg(const QString& msg);
};
#endif // CONSOLE_H