summaryrefslogtreecommitdiffstats
path: root/qt/qLogging.h
blob: 98a619a445e376607198fb2ffa5f3dd1ddc9acdd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef QLOG_H
#define QLOG_H
#include <QtGui>
#include <logging.h>

class QLogger : public QWidget, public Logger
{
    Q_OBJECT
public:
    QLogger(QWidget *);
    ~QLogger();

public slots:
  
private:

};

#endif // QLOG_H