1 // Copyright 2005-2019 The Mumble Developers. All rights reserved.
2 // Use of this source code is governed by a BSD-style license
3 // that can be found in the LICENSE file at the root of the
4 // Mumble source tree or at <https://www.mumble.info/LICENSE>.
5 
6 #ifdef MUMBLE
7 	#include "mumble_pch.hpp"
8 #else
9 	#include "murmur_pch.h"
10 #endif
11 
12 #include "LogEmitter.h"
13 
LogEmitter(QObject * p)14 LogEmitter::LogEmitter(QObject *p) : QObject(p) {
15 };
16 
addLogEntry(const QString & msg)17 void LogEmitter::addLogEntry(const QString &msg) {
18 	emit newLogEntry(msg);
19 };
20