From da091649e775b23a35eb88df1c2cf9ce3fb350f7 Mon Sep 17 00:00:00 2001 From: Raquel Medina Date: Fri, 29 Nov 2019 23:01:41 +0100 Subject: voice: add initial support for voice agents configuration Bug-AGL: SPEC-2981 Signed-off-by: Raquel Medina Change-Id: I0195d914dc10f4fcdea1cb6df0e6a5859ad8269d --- message.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'message.h') diff --git a/message.h b/message.h index c39b107..229ba80 100644 --- a/message.h +++ b/message.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2017, 2018 Konsulko Group + * Copyright (C) 2017, 2018, 2019 Konsulko Group * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -42,6 +42,7 @@ enum MessageType { RadioEventMessage, MapEventMessage, NavigationEventMessage, + VoiceEventMessage, }; class Message : public QObject @@ -87,17 +88,17 @@ class Message : public QObject return m_reply_data; } - inline bool isEvent() const + inline bool isEvent() const { return m_event; } - inline bool isReply() const + inline bool isReply() const { return m_reply; } - inline bool isValid() const + inline bool isValid() const { return m_init; } -- cgit 1.2.3-korg