diff options
author | Raquel Medina <raquel.medina@konsulko.com> | 2020-03-04 19:32:03 +0100 |
---|---|---|
committer | Raquel Medina <raquel.medina@konsulko.com> | 2020-03-09 15:03:20 +0100 |
commit | 5c750385d02116a92fa4c120ccc26abb8267bc97 (patch) | |
tree | a1ac931e48956a5d94e275447d061e630376d0aa /signal-composer | |
parent | cd1a7f3bcbaef1e9c23549f472bce4ae42b2afad (diff) |
eliminate unneeded dependencies on public headers
- Remove unneeded dependencies from libqtappfw public
headers, specifically MessageEngine and Message
hierarchy header files, in preparation for refactoring
work on these areas.
This change helps shield client apps from the
upcoming changes in the library, and highlight the
separation between the library's core and the various
modules providing public interfaces to those apps.
- Make MessageType an scoped enum to fwd declare it.
- Update Copyright statement on files updated by
this patch.
Bug-AGL: SPEC-3112
Signed-off-by: Raquel Medina <raquel.medina@konsulko.com>
Change-Id: I12fd9cdc034aa1166f6448c07befadd9d2042b05
Diffstat (limited to 'signal-composer')
-rw-r--r-- | signal-composer/signalcomposer.cpp | 9 | ||||
-rw-r--r-- | signal-composer/signalcomposer.h | 8 |
2 files changed, 11 insertions, 6 deletions
diff --git a/signal-composer/signalcomposer.cpp b/signal-composer/signalcomposer.cpp index 90e6446..59395f5 100644 --- a/signal-composer/signalcomposer.cpp +++ b/signal-composer/signalcomposer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 Konsulko Group + * Copyright (C) 2018-2020 Konsulko Group * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -14,10 +14,13 @@ * limitations under the License. */ +#include <QDebug> + #include "message.h" +#include "signalcomposermessage.h" #include "messageengine.h" #include "signalcomposer.h" -#include "signalcomposermessage.h" + SignalComposer::SignalComposer (QUrl &url, QObject * parent) : QObject(parent), @@ -66,7 +69,7 @@ void SignalComposer::onDisconnected() void SignalComposer::onMessageReceived(MessageType type, Message *message) { - if (type == SignalComposerEventMessage) { + if (type == MessageType::SignalComposerEventMessage) { SignalComposerMessage *tmsg = qobject_cast<SignalComposerMessage*>(message); if (tmsg->isEvent()) { diff --git a/signal-composer/signalcomposer.h b/signal-composer/signalcomposer.h index 3a6ca25..13d26c6 100644 --- a/signal-composer/signalcomposer.h +++ b/signal-composer/signalcomposer.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2019 Konsulko Group + * Copyright (C) 2019, 2020 Konsulko Group * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -17,11 +17,13 @@ #ifndef SIGNALCOMPOSER_H #define SIGNALCOMPOSER_H -#include <QDebug> #include <QObject> #include <QJsonArray> -#include "messageengine.h" +class MessageEngine; +class Message; + +enum class MessageType; class SignalComposer : public QObject { |