Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikkel Krautz <mikkel@krautz.dk>2016-12-04 15:26:46 +0300
committerMikkel Krautz <mikkel@krautz.dk>2016-12-04 15:26:46 +0300
commitcd8f6b75e0efd9982807e9d5b119dd908a1a89e9 (patch)
treec3ed9c2aef9543ddb986c306ef68e1a336252918 /src/murmur/Server.h
parentec0ed4efca86082abedb75bbf277cc4ccc64355d (diff)
Refactor LogEmitter from Murmur into its own file in src/.
It's a natural refactoring and it'd be nice to be able to use LogEmitter in Mumble as well.
Diffstat (limited to 'src/murmur/Server.h')
-rw-r--r--src/murmur/Server.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/murmur/Server.h b/src/murmur/Server.h
index 400968c8b..f84c225ab 100644
--- a/src/murmur/Server.h
+++ b/src/murmur/Server.h
@@ -51,17 +51,6 @@ struct TextMessage {
QString qsText;
};
-class LogEmitter : public QObject {
- private:
- Q_OBJECT
- Q_DISABLE_COPY(LogEmitter)
- signals:
- void newLogEntry(const QString &msg);
- public:
- LogEmitter(QObject *parent = NULL);
- void addLogEntry(const QString &msg);
-};
-
class SslServer : public QTcpServer {
private:
Q_OBJECT;