LogHandler: fix for linux build

This commit is contained in:
Anthony J. Thibault 2015-10-30 17:44:06 -07:00
parent f50e1a0977
commit 2eb62f2fd8
2 changed files with 7 additions and 5 deletions

View file

@ -16,6 +16,8 @@
#include <QDebug> #include <QDebug>
#include <QTimer> #include <QTimer>
#include <QThread> #include <QThread>
#include <QMutexLocker>
#include <QRegExp>
#include "LogHandler.h" #include "LogHandler.h"

View file

@ -13,11 +13,11 @@
#ifndef hifi_LogHandler_h #ifndef hifi_LogHandler_h
#define hifi_LogHandler_h #define hifi_LogHandler_h
#include <qhash.h> #include <QHash>
#include <qobject.h> #include <QObject>
#include <qregexp.h> #include <QSet>
#include <qset.h> #include <QString>
#include <qstring.h> #include <QMutex>
const int VERBOSE_LOG_INTERVAL_SECONDS = 5; const int VERBOSE_LOG_INTERVAL_SECONDS = 5;